You didn't supply the SQL (understandable), but I've found that this type of error message means that some bind variables are expected, yet not provided.
for example:
If the value $mytableid_value is not present (missing), the error message you display would be produced.my $sql = qq{SELECT * FROM mytable WHERE mytableid = ?}; my $sth = $dbh->prepare ($sql); $sth->execute ($mytableid_value);
In reply to Re: programmatic database querying
by snopal
in thread programmatic database querying
by molly
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |