RE: Different types of prepare statements

2004-07-29 Thread CAMPBELL, BRIAN D (BRIAN)
" or ''). A short answer is that these are various alternatives that Perl provides for supporting multiline quoting... <mailto:[EMAIL PROTECTED] Sent: Thursday, July 29, 2004 8:51 AM To: [EMAIL PROTECTED] Subject: Different types of prepare statements I have seen: my $sth = $d

Re: Different types of prepare statements

2004-07-29 Thread Hardy Merrill
My comments(HM>>) are below. Sorry for the poor message quoting - thanks to Groupwise on Windoze XP. >>> "Robert" <[EMAIL PROTECTED]> 07/29/04 11:51AM >>> I have seen: my $sth = $dbh->prepare( <> I've never used this method but there's no reason it shouldn't work. This uses what perl calls "Her

Different types of prepare statements

2004-07-29 Thread Robert
I have seen: my $sth = $dbh->prepare( prepare(qq{ SELECT blah FROM blah WHERE blah = blah }); What is the difference? I am new to Perl/DBI stuff. Robert