DBI.c: loadable library and perl binaries are mismatched

2016-05-17 Thread Ron Wingfield
I am getting no response from this post on the FreeBSD Forums: https://forums.freebsd.org/threads/56291/ If I try to execute a simple perl script that utilizes the DBI, the following error diagnostic: |# perl -T create_roster_db.pl DBI.c: loadable library and perl binaries are mismatched (got

Re: The Perl Programming Language

2012-01-22 Thread Ron Wingfield
I've also found the O'Reilly publications, _CGI programming with Perl_, and _Programming the Perl DBI_ very helpful. Shlomi Fish wrote: Hello Lívio, On Sun, 22 Jan 2012 13:47:26 + Lívio Cipriano wrote: Hi, I'm new to Perl but old in other programming languages. Is there a equivale

Undefined Subroutine

2010-04-08 Thread Ron Wingfield
#!/usr/bin/perl -wT # #sub_test.pl . . .just a proof-of-concept # to get subroutines to be recognized. use strict; use warnings; use CGI; use CGI::Carp qw(fatalsToBrowser); my $q = new CGI; #- #my $con = $q->param('c

Re: Line ending with Gary"^M on UNIX

2006-12-07 Thread Ron Wingfield
#!/usr/bin/perl -w # The intent of this program is to remove a trailing # line feed character (^M) from a text line. $input_file = $ARGV[0]; $output_file = $ARGV[1]; open (INFILEHANDLE, "<$input_file") or die "Cannot open file, $input_file\n"; open (OUTFILEHANDLE, ">$output_file")

Re: What are the differences between Perl and PHP when handling with Web pages

2006-05-26 Thread Ron Wingfield
- Original Message - From: "Chad Perrin" <[EMAIL PROTECTED]> To: Sent: Friday, May 26, 2006 12:09 PM Subject: Re: What are the differences between Perl and PHP when handling with Web pages On Fri, May 26, 2006 at 06:51:36PM +0200, sfantar wrote: Thank you very much for your long

Re: standardising spellings

2005-02-24 Thread Ron Wingfield
- Original Message - From: Graeme St. Clair To: beginners@perl.org Sent: Thursday, February 24, 2005 2:24 PM Subject: RE: standardising spellings -Original Message- From: Peter Rabbitson [mailto:[EMAIL PROTECTED] Sent: Thursday, February 24, 2005 2:01 PM To

Re: [Maybe OT] . . .the Contracting Business

2005-02-23 Thread Ron Wingfield
From: Todd W To: beginners@perl.org Sent: Wednesday, February 23, 2005 5:29 PM Subject: Re: [Maybe OT] . . .the Contracting Business "Ron Wingfield" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Always contract for 1099 payment -- Never, ne

Re: [Maybe OT] . . .the Contracting Business

2005-02-22 Thread Ron Wingfield
e pre computer era. After all, personal computers, etc. and now considered to be disposable Consumer Electronics by the industry. Bummer, huh? Seriously, good luck, Ron Wingfield - Original Message -

Re: Naming Convention?

2005-01-22 Thread Ron Wingfield
ing to segregate upper and lower case letters - - same for the old TTY's (telegraph typewriters, . . .yeah, I'm an old guy). OTTF, Ron Wingfield FreeBSD 4.8 -- Apache http 2.0.28 -- MySQL client/server 4.1.7 Perl 5.8.5 -- p5-DBD-mysql-2.9004 driver -- p5-DBI-1.46 - Original M

Re: dynamically calling a subroutine

2005-01-18 Thread Ron Wingfield
- Original Message - From: Stone To: beginners@perl.org Sent: Tuesday, January 18, 2005 12:20 PM Subject: Re: dynamically calling a subroutine On Tue, 18 Jan 2005 20:05:01 +0200, Absolut Newbie <[EMAIL PROTECTED]> wrote: > $var1(); # this is where it crashes You're

Re: Trouble Calling Modules...

2005-01-06 Thread Ron Wingfield
You could use the "use lib" construct, e.g., use lib qw(/Spreadsheet/ParseExcelSimple); Of course, specify paths as your applications require. - Original Message - From: Owen Cook To: beginners@

Design Question

2005-01-06 Thread Ron Wingfield
I have an application scenario where for example, four programs are stacked as follows pgm-a -- login/passwd/default database selection pgm-b -- Application Menu pgm-c -- specific application browser interface pgm-d -- uses DBI_API.pm (custom Perl module) Pgm-d is totally generic and

Perl and JavaScript's "onsubmit"

2005-01-06 Thread Ron Wingfield
Can a JavaScript instruction, executed per the custom "CheckForm" subroutine as called -onsubmit (see below) assign the value of the Perl $ap_name var that is associated with the -action argument of start_form( )? (BTW, I'm on my way to Barnes & Noble to buy yet another $50 book, . . .thought I

Re: Is GOTO evil?

2005-01-06 Thread Ron Wingfield
Don't know if anyone in the discussion has ever written any of IBM's early RPG (note that the options are still in the RPG/400 for the ILE, too, . . .DO NOT USE THEM!), but RPG instructions (known as "calculation" or "C" specs. -- nothing to do with the C programming language) have a throw-back

Re: Is GOTO evil?

2005-01-06 Thread Ron Wingfield
I guess I'm really old, too (55 yrs); however, I actually saw a book (I didn't touch it though), "The Art of Assembly Language Programming" at Barnes & Noble this afternoon. Hopefully, I've forgotten everything that I've ever known about 370 Macro Assembler. . . .And it is true that to get aro