Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I really haven't found normal example of PHP file where MySQL transactions are being used. Can you show me simple example of that?

And one more question. I've already done a lot of programming and didn't use transactions. Can I put a PHP function or something in header.php that if one mysql_query fails, then the others fail too?


I think I have figured it out, is it right?:

mysql_query("SET AUTOCOMMIT=0");
mysql_query("START TRANSACTION");

$a1 = mysql_query("INSERT INTO rarara (l_id) VALUES('1')");
$a2 = mysql_query("INSERT INTO rarara (l_id) VALUES('2')");

if ($a1 and $a2) {
    mysql_query("COMMIT");
} else {        
    mysql_query("ROLLBACK");
}
share|improve this question
3  
You can use mysql_query("BEGIN"); instead of sequence mysql_query("SET AUTOCOMMIT=0"); mysql_query("START TRANSACTION"); – Kirzilla Apr 10 '12 at 10:03
12  
Please, don't use mysql_* functions in new code. They are no longer maintained and are officially deprecated. See the red box? Learn about prepared statements instead, and use PDO or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial. – Neal Dec 28 '12 at 13:57

4 Answers

up vote 101 down vote accepted

The idea I generally use when working with transactions looks like this (semi-pseudo-code):

try {
    // First of all, let's begin a transaction
    $db->beginTransaction();

    // A set of queries; if one fails, an exception should be thrown
    $db->query('first query');
    $db->query('second query');
    $db->query('third query');

    // If we arrive here, it means that no exception was thrown
    // i.e. no query has failed, and we can commit the transaction
    $db->commit();
} catch (Exception $e) {
    // An exception has been thrown
    // We must rollback the transaction
    $db->rollback();
}


Note that, with this idea, if a query fails, an Exception must be thrown:

  • PDO can do that, depending on how you configure it
  • else, with some other API, you might have to test the result of the function used to execute a query, and throw an exception yourself.


Unfortunately, there is no magic involved. You cannot just put an instruction somewhere and have transactions done automatically: you still have to specific which group of queries must be executed in a transaction.

For example, quite often you'll have a couple of queries before the transaction (before the begin) and another couple of queries after the transaction (after either commit or rollback) and you'll want those queries executed no matter what happened (or not) in the transaction.

share|improve this answer
7  
Be careful if you are doing operations that may throw exceptions other than db ones. If so, an exception from a non-db statement may cause a rollback inadvertently (even if all the db calls are successful). Normally, you'd think rolling back is a good idea even if the error was not on the db side, but there are times 3rd party/non-critical code may cause not-so-important exceptions, and you still want to continue with the transaction. – Halil Özgür Jun 1 '12 at 14:10
2  
What is the $db type here? mysqli? – Jake Jan 30 at 1:15

I think I have figured it out, is it right?:

mysql_query("SET AUTOCOMMIT=0");
mysql_query("START TRANSACTION");

$a1 = mysql_query("INSERT INTO rarara (l_id) VALUES('1')");
$a2 = mysql_query("INSERT INTO rarara (l_id) VALUES('2')");

if ($a1 and $a2) {
    mysql_query("COMMIT");
} else {        
    mysql_query("ROLLBACK");
}
share|improve this answer
11  
no need to set autocommit=0. transactions always work that way. – babonk Nov 27 '10 at 6:58
@babonk - not sure this is the case with InnoDB? – buggedcom Oct 12 '11 at 13:47
@buggedcom This applies to all database engines. – Michael Mior Oct 19 '11 at 13:24
@babonk I'm not sure where you are getting that information from. autocommit is default 1 in InnoDB. dev.mysql.com/doc/refman/5.0/en/commit.html "By default, MySQL runs with autocommit mode enabled. This means that as soon as you execute a statement that updates (modifies) a table, MySQL stores the update on disk to make it permanent. " – John Dec 1 '11 at 20:40
2  
I think once you start a transaction it works as if AUTOCOMMIT=0 – babonk Dec 5 '11 at 20:33
show 1 more comment
<?php
// trans.php
function begin()
{
mysql_query("BEGIN");
}

function commit()
{
mysql_query("COMMIT");
}

function rollback()
{
mysql_query("ROLLBACK");
}

mysql_connect("localhost","Dude1", "SuperSecret") or die(mysql_error());

mysql_select_db("bedrock") or die(mysql_error());

$query = "INSERT INTO employee (ssn,name,phone) values ('123-45-6789','Matt','1-800-555-1212')";

begin(); // transaction begins

$result = mysql_query($query);

if(!$result)
{
rollback(); // transaction rolls back
echo "transaction rolled back";
exit;
}
else
{
commit(); // transaction is committed
echo "Database transaction was successful";
}

?>
share|improve this answer
For a broad and high profile question like this, it would be great if the answers also reflected that. Your code sample is great, but can you elaborate more? Explain about transactions, why, when and where? Finally, link the code with your explanation. – Dennis Haarbrink Oct 18 '12 at 10:13
Welcome on StackOverflow. Please always write some describing text to your answer. – Adrian Lang Oct 18 '12 at 10:13
1  
sorry im begginer, and my bad english, its very easy examle of code - for begginers - commit() rollback() begin() put in class DB (for example), $query - not once - maybe $query0 $query1 - then chek them - i use this code, this very easy to understand =) – Gedzberg Alex Oct 18 '12 at 10:55
2  
His comments make the example pretty clear. Good code shouldn't need describing text. Also the question asks for a simple example. I like this answer. – J.Money Oct 25 '12 at 0:20

Please check which storage engine you are using, if it is MyISAM then Transaction('COMMIT','ROLLBACK') will be not supported .Because innodb storage engine support the transactions not MyISAM.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.