Skip to content
Snippets Groups Projects
Commit 9c1015b7 authored by Dan Bartram's avatar Dan Bartram
Browse files

Add missing DB rollback functionality

parent 25a4b5a9
Branches
No related tags found
No related merge requests found
......@@ -204,6 +204,13 @@ class OC_DB {
return \OC::$server->getDatabaseConnection()->commit();
}
/**
* Rollback the database changes done during a transaction that is in progress
*/
public static function rollback() {
return \OC::$server->getDatabaseConnection()->rollback();
}
/**
* saves database schema to xml file
* @param string $file name of file
......
......@@ -96,6 +96,13 @@ class DB {
\OC_DB::commit();
}
/**
* Rollback the database changes done during a transaction that is in progress
*/
public static function rollback() {
\OC_DB::rollback();
}
/**
* Check if a result is an error, works with Doctrine
* @param mixed $result
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment