mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
MINOR: transaction functions renamed for consistency
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@115425 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
60f237092a
commit
20efa5b004
@ -919,7 +919,7 @@ class MySQLDatabase extends SS_Database {
|
||||
* Start a prepared transaction
|
||||
* See http://developer.postgresql.org/pgdocs/postgres/sql-set-transaction.html for details on transaction isolation options
|
||||
*/
|
||||
public function startTransaction($transaction_mode=false, $session_characteristics=false){
|
||||
public function transactionStart($transaction_mode=false, $session_characteristics=false){
|
||||
//Transactions not set up for MySQL yet
|
||||
}
|
||||
|
||||
@ -942,7 +942,7 @@ class MySQLDatabase extends SS_Database {
|
||||
/*
|
||||
* Commit everything inside this transaction so far
|
||||
*/
|
||||
public function endTransaction(){
|
||||
public function transactionEnd(){
|
||||
//Transactions not set up for MySQL yet
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user