Skip to content

Commit

Permalink
Removed deprecated transaction methods on MSSQLDatabase
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Harvey committed Nov 16, 2012
1 parent 37b4005 commit 334c263
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions code/MSSQLDatabase.php
Expand Up @@ -1499,13 +1499,6 @@ public function supportsExtensions($extensions=Array('partitions', 'tablespaces'
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.
*/
Expand Down Expand Up @@ -1543,13 +1536,6 @@ public function transactionRollback($savepoint=false){
}
}

/**
* @deprecated Use transactionEnd() (method required for 2.4.x)
*/
public function endTransaction(){
$this->transactionEnd();
}

/**
* Commit everything inside this transaction so far
*/
Expand Down

0 comments on commit 334c263

Please sign in to comment.