Added firebird transaction commands. Thanks to 'daniele.teti'. Closes #5130

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7351 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
mark_story 2008-07-22 23:22:17 +00:00
parent 9cf8a77e88
commit d9bb166721

View file

@ -109,6 +109,17 @@ class DboFirebird extends DboSource {
'binary' => array('name' => 'blob'),
'boolean' => array('name' => 'smallint')
);
/**
* Firebird Transaction commands.
*
* @var array
**/
var $_commands = array(
'begin' => 'SET TRANSACTION',
'commit' => 'COMMIT',
'rollback' => 'ROLLBACK'
);
/**
* Connects to the database using options in the given configuration array.
*