Newbedford.net wrote:
I dont know if this is possible.
when calling execute with one variable that holds multiple placeholders.
Similar to this.
$dbh->execute($variable)
the $variable holds multiple values ie..
$variable="bindinfo1,bindinfo2"
Hopefully, this will never be the case. IMO, it is completely up to you,
to implement the logic, if, and when, to apply something as simple as
my @vars;
if (hasMultipleVars($variable)) {
@vars = split(/,/, $variable);
} else {
@vars = ($variable);
}
If you disagree, I'd be interested to learn, how you suggest the drivers
implementation of hasMultipleVars($variable).
Jochen