mirror of
https://github.com/silverstripe/silverstripe-mssql
synced 2024-10-22 08:05:53 +02:00
Removed deprecated transaction methods on MSSQLDatabase
This commit is contained in:
parent
37b4005052
commit
334c2634ac
@ -1499,13 +1499,6 @@ class MSSQLDatabase extends SS_Database {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Use transactionStart() (method required for 2.4.x)
|
||||
*/
|
||||
public function startTransaction($transaction_mode=false, $session_characteristics=false){
|
||||
$this->transactionStart($transaction_mode, $session_characteristics);
|
||||
}
|
||||
|
||||
/**
|
||||
* Start transaction. READ ONLY not supported.
|
||||
*/
|
||||
@ -1543,13 +1536,6 @@ class MSSQLDatabase extends SS_Database {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Use transactionEnd() (method required for 2.4.x)
|
||||
*/
|
||||
public function endTransaction(){
|
||||
$this->transactionEnd();
|
||||
}
|
||||
|
||||
/**
|
||||
* Commit everything inside this transaction so far
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user