in reply to Re^4: DBI bind inout problem
in thread DBI bind inout problem
This will tell you if there is any problem when executing that code, namely if the user that is connecting to the database is granted the required permissions to do what you want it to.my $func = $dbh->prepare( ... }) or die DBI->errstr; ... $func->execute or die DBI->errstr;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: DBI bind inout problem
by Liche (Initiate) on Dec 05, 2006 at 13:46 UTC |