RE: Multiple SQL commands in a scripts?

2002-10-06 Thread Pereira, Adrian non Unisys
: Multiple SQL commands in a scripts? Greets Folks, I havent tried this yet, but I was wondering if it is possible to use multiple SQL commands in a list... maybe something like so... ###PREPARE AND RUN THE FIRST SQL COMMAND my $sth = $dbh->prepare("SELECT foo FROM bar"); my $thing =

Re: Multiple SQL commands in a scripts?

2002-10-06 Thread Henri Asseily
On Sun, 6 Oct 2002, Will wrote: > Greets Folks, > > I havent tried this yet, but I was wondering if it is > possible to use multiple SQL commands in a list... > maybe something like so... > > ###PREPARE AND RUN THE FIRST SQL COMMAND > my $sth = $dbh->prepare("SELECT foo FROM bar"); > my $

Multiple SQL commands in a scripts?

2002-10-06 Thread Will
Greets Folks, I havent tried this yet, but I was wondering if it is possible to use multiple SQL commands in a list... maybe something like so... ###PREPARE AND RUN THE FIRST SQL COMMAND my $sth = $dbh->prepare("SELECT foo FROM bar"); my $thing = $sth->execute(); ###PREPARE AND RUN A SECOND