in reply to Re: Re: Re: DBI execute() args in array format (or similar) possible?
in thread DBI execute() args in array format (or similar) possible?
The execute() method wants distinct arguments ie execute(arg1,arg2,arg3) vs execute(qw(arg1,arg2,arg3)) which is the same, of course, as execute(@args).
if @args hold (1,2,3), then
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Re: Re: DBI execute() args in array format (or similar) possible?
by snafu (Chaplain) on Aug 14, 2002 at 17:08 UTC |