in reply to DBI execute() args in array format (or similar) possible?
No, I think you're getting this error because there is only one thing in your @args array. Your calling syntax looks correct.
By the way, it's preferable to say this:
Or if you prefer to use multiple calls to shift, don't put the scalar variable name in list context the way you have it now.my ($statement, $clli_ref_args, $hour_ref_args, $date_ref_args) = @_;
|
---|