in reply to Re: DBI execute() args in array format (or similar) possible?
in thread DBI execute() args in array format (or similar) possible?
The magic line of code that solved my problem... $STH->execute(eval{join(',',@args),return(@args)});Say what? That's equivalent to writing $STH->execute(@args); The result of the join() is discarded.
I rather think something else is going one.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: DBI execute() args in array format (or similar) possible?
by snafu (Chaplain) on Aug 13, 2002 at 03:53 UTC | |
by dws (Chancellor) on Aug 13, 2002 at 04:36 UTC | |
by snafu (Chaplain) on Aug 14, 2002 at 17:08 UTC |