Google
×
日本語のページを検索
  • すべての言語
  • 日本語のページを検索
すべての結果
The simple test is to start a transaction by setting $mysqli_obj->autocommit(false) and executing an insert statement. Before getting to a $mysqli_obj->commit ...
関連する質問
Auto-commit mode means that every query that you run has its own implicit transaction, if the database supports it, or no transaction if the database doesn't ...
The autocommit() / mysqli_autocommit() function turns on or off auto-committing database modifications. Tip: Also look at the commit() function, which commits ...
Toggles autocommit behaviour. By default, auto-commit is on for a connection. Disabling auto-commit is equivalent with starting a transaction. Parameters ...
The mysqli_autocommit() is used turn on/off the auto-commit feature. This function accepts a boolean value as a parameter. If you pass true to this function the ...
Autocommit mode helps prevent locking escalation issues that can impede the performance of highly scalable Web applications. By default, the PDO extension opens ...
With OnOff set to FALSE the user must commit or rollback the transaction using either fbsql_commit() or fbsql_rollback().
In autocommit mode, each SQL statement is a complete transaction, which is automatically committed. Autocommit mode helps prevent locking escalation issues that ...
Commits a transaction, returning the database connection to autocommit mode until the next call to PDO::beginTransaction() starts a new transaction.