Re: DBI prepare syntax

2007-11-08 Thread Douglas Hunter
Mike wrote: Hi, I have a variable setup as $pid and i've tried to call this in the prepare part of the DBI module but i'm get an "Unknown column $pid" syntax error. Probably $pid was passed as a string instead of a variable inside the prepare (''). Anyone has an idea of how i can fix this?

Re: How do you Create an array of a struct?

2007-09-18 Thread Douglas Hunter
t; { name=> '$', abbrev => '$' }; # make a new struct object my $carrier = Carrier_Info->new(); # assign data to the elements $carrier->name( "Bob Ross" ); $carrier->abbrev( "BR" ); # access data in the elements my $carrier_name = $

Re: Comparing numbers

2007-09-09 Thread Douglas Hunter
r keywords, which is often useful. http://perldoc.perl.org/ has a web based search of the latest stable documentation. -- Douglas Hunter -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: What is hash randomization in 5.8.1?

2003-10-08 Thread Douglas Hunter
Kevin Old wrote: Hello everyone, I've seen several references on the Perl5 Porters mailing list about Perl 5.8.1's hash randomization. Can someone explain actually what it is, why I'd want to use it and how to use it? The most important bit of the documentation in is in perlsec: "Perl has never

Re: Perl Security

2003-07-22 Thread Douglas Hunter
Jonathan wrote: Hi, I am insterested in creating a reusable module that allows my scripts to have pretty good security. I just don't know how i would go about encrypting passwords. Please help perldoc -q password has some advice for you (which includes looking at perldoc -f crypt). You sho