私が理解している限り、トランザクションは$mysqli->autocommit(FALSE);
ステートメントを呼び出すと開始され、以下の例のように$mysqli->commit();
コマンドを呼び出した後に終了します。
<?php
//Start transaction
$mysqli->autocommit(FALSE);
$mysqli->query('UPDATE `table` SET `col`=2');
$mysqli->query('UPDATE `table1` SET `col1`=3;');
$mysqli->commit();
//End transaction
//Executing other queries without transaction control
$mysqli->query("Select * from table1");
$mysqli->query("Update table1 set col1=2");
//End of executing other queries without transaction control
//Start transaction
$mysqli->autocommit(FALSE);
$mysqli->query('UPDATE `table` SET `col`=2');
$mysqli->query('UPDATE `table1` SET `col1`=3;');
$mysqli->commit();
//End transaction
?>
正しく理解できましたか?そうでない場合は、実際にトランザクションを使用するのは初めてであるため、修正してください。
ありがとうございました。
php doc によると、そうです。
_<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$mysqli->query("CREATE TABLE Language LIKE CountryLanguage");
/* set autocommit to off */
$mysqli->autocommit(FALSE);
/* Insert some values */
$mysqli->query("INSERT INTO Language VALUES ('DEU', 'Bavarian', 'F', 11.2)");
$mysqli->query("INSERT INTO Language VALUES ('DEU', 'Swabian', 'F', 9.4)");
/* commit transaction */
$mysqli->commit();
/* drop table */
$mysqli->query("DROP TABLE Language");
/* close connection */
$mysqli->close();
?>
_
上記の例では:
CREATE TABLE
_はデフォルトの動作であるため、自動的にコミットされます。INSERT INTO
_are n'tは、autocommit(FALSE)
のために自動コミットされません。autocommit(FALSE)
は->commit();
によってresetであったため、_DROP TABLE
_は自動コミットされます。ドロップテーブルを除き、j0kは主に正しいです。
-> commit()で自動コミットがオンにならない
代わりに、DROP TABLEはDDLクエリであり、DDLクエリは常に暗黙的にコミットされ、以前にコミットされていないすべての作業をコミットします。
したがって、作業をコミットしなかった場合、DDLクエリはこのコミットを強制します。
SQLステートメントを1回準備してから、それを数回実行します。
<?php
$Mysqli = new mysqli("Host","user","pass","base");
// check connection
if(mysqli_connect_errno())
{
printf("Connect failed: %s\n",mysqli_connect_error());
exit();
}
// some data for db insertion
$countries=['Austria','Belgia','Croatia','Denmark','Estonia'];
// explicitly begin DB transaction
$Mysqli->begin_transaction();
// prepare statement (for multiple inserts) only once
$stmt=$Mysqli->prepare("INSERT INTO table(column) VALUES(?)");
// bind (by reference) prepared statement with variable $country
$stmt->bind_param('s',$country);
// load value from array into referenced variable $country
foreach($countries as $country)
{
//execute prep stat more times with new values
//$country is binded (referenced) by statement
//each execute will get new $country value
if(!$stmt->execute())
{
// rollback if prep stat execution fails
$Mysqli->rollback();
// exit or throw an exception
exit();
}
}
// close prepared statement
$stmt->close();
// commit transaction
$Mysqli->commit();
// close connection
$Mysqli->close();
?>
コマンド「commit」が自動コミットを自動的にtrueに戻すと思いますか? php doc のコメントは「いいえ」と言っています!