Art Mahanna wrote:
> Since I subscribed to this forum this afternoon I've received four separate
> emails containing the [EMAIL PROTECTED] virus. This email arrives masquerading
> as a Microsoft public service, supposedly containing patches for Outlook.
> As Microsoft has stated, they DO NOT send
In "Programming Perl", there is an example of eval in chapter 3 that I do
not understand. It is on page 161. It reads:
Here's a statement that assigns an element to a hash chosen at run-time:
eval "\$$arrayname{\$key} = 1";
I know the \ creates a reference, and the $ is dereferencing $arra
That meets NONE of the criteria you set out for in your original post.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Hello,
I try to install DBI and DBD::Oracle on a Windows XP.
With DBI it works fine this way:
ppm
install DBI
but it doesn't work with DBD::Oracle
install DBD::Oracle
--> Searching for 'DBD::Oracle' returned no results
Is there a way to install it with ppm otherwise ?
Thank you
Olivier
--
From: Johnny Ingersoll <[EMAIL PROTECTED]>
> my first "serious" perl module is simple parse of IBM MVS JCL. In the
> following routine, I'm looking for program name in a parm line that
> may be of the form: PARM='BMP,WEAAC202,WEAAC20280,,' (in
> this instance it's supposed to go after t
"Hmmm..." <[EMAIL PROTECTED]> wrote:
>
> In "Programming Perl", there is an example of eval in chapter 3 that I do
> not understand. It is on page 161. It reads:
>
> Here's a statement that assigns an element to a hash chosen at run-time:
>
> eval "\$$arrayname{\$key} = 1";
>
> I know the \ c
> #!/usr/bin/perl -w
> use DBI;
> $dbh = DBI->connect("DBI:mysql:test", "testuser", "testpassword") or die
> "failed to connect";
> print $dbh;
> DBI connect('test','testuser',...) failed: Access denied for user:
> '[EMAIL PROTECTED]' (Using password: YES) at ./dbtest line 4
> failed to connect at
Try install Perl 5.6.1 build 635 ActiveState. It's the only perl version
that has the dbd::Oracle module available.
- Original Message -
From: "Olivier Wirz" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, November 01, 2003 1:54 PM
Subject: DBD::Oracle
> Hello,
>
> I try to
>From this point on you have to read the mysql documentation on creating users etc.
>Again perldoc DBI and perldoc DBD::mysql are great resources.
On Fri, 31 Oct 2003 19:46:36 -0700
Bryan Harris <[EMAIL PROTECTED]> wrote:
>
> > When perl wants to connect to databases (any database) perl uses a
hey guys, i'm trying to grep some data from a log file and getting the
following error. Any ideas???
[EMAIL PROTECTED] perl -e 'grep \"Eliminating movie\" update.log |awk {'print
\$5'}';
Can't find string terminator '"' anywhere before EOF at -e line 1.
--
To unsubscribe, e-mail: [EMAIL PROTE
Wiggins,
Thanks that certainly did the trick. Thank you and
everyone else on this list for teaching me hash and
providing help.
Phillip
-Original Message-
From: Wiggins d'Anconia [mailto:[EMAIL PROTECTED]
Sent: Friday, October 31, 2003 7:42 PM
To: [EMAIL PROTECTED]
Cc: [EMA
On Sat, Nov 01, 2003 at 11:02:25AM -0500, SilverFox wrote:
> hey guys, i'm trying to grep some data from a log file and getting the
> following error. Any ideas???
>
> [EMAIL PROTECTED] perl -e 'grep \"Eliminating movie\" update.log |awk {'print
> \$5'}';
% awk '/Eliminating movie/ { print $5
SilverFox <[EMAIL PROTECTED]> wrote:
> hey guys, i'm trying to grep some data from a log file and getting the
> following error. Any ideas???
>
> [EMAIL PROTECTED] perl -e 'grep \"Eliminating movie\" update.log |awk {'print
> \$5'}';
>
> Can't find string terminator '"' anywhere before EOF at -
Hi,
I've never liked "recursion" but of course there are times where it is
needed.
I have a simple task that I am trying to do. Basically, I just want to list
out my directories on disk, and then chdir to each one, print it out, and so
on. Pretty basic, but I have a total mental block using rec
On Sat, Nov 01, 2003 at 05:20:39PM -0800, Jeff Westman wrote:
> I have a simple task that I am trying to do. Basically, I just want
> to list out my directories on disk, and then chdir to each one, print
> it out, and so on.
use File::Find;
find sub { print "$File::Find::name\n" if -d },
On Sat, 2003-11-01 at 20:20, Jeff Westman wrote:
> Hi,
>
> I've never liked "recursion" but of course there are times where it is
> needed.
>
> I have a simple task that I am trying to do. Basically, I just want to list
> out my directories on disk, and then chdir to each one, print it out, and
Yannick Warnier <[EMAIL PROTECTED]> wrote:
:
: But PHP, I think, integrates html code a better way. You can
: just type your html code and then say and there
: you put the varying code. This is a good solution when you
: want to separate content and presentation. I don't know but
: you'll tell m
17 matches
Mail list logo