Guest User

Untitled

a guest
Jul 17th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. my $dbh= DBI->connect(............ );
  2.  
  3. my $sth = $dbh->prepare("call sp_get_workitems (1,1)");
  4. $dbh->begin_work or die $dbh->errstr;
  5. $sth->execute();
  6. my ($result)= $sth->fetchrow_array();
  7.  
  8. $dbh->commit;
  9.  
  10. DBD driver has not implemented the AutoCommit attribute
  11.  
  12. DBD::mysql::db commit failed: Commands out of sync; you can't run this command now
Add Comment
Please, Sign In to add comment