Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 5th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. C sample transaction for mysql
  2. mysql_autocommit(conn, 0);
  3. //Do stuff here
  4. mysql_commit(conn); //...or mysql_rollback(conn);
  5.        
  6. mysql_query(conn, "START TRANSACTION");
  7. //Do stuff here
  8. mysql_query(conn, "COMMIT"); //...or mysql_query(conn, "ROLLBACK");