Starting to bring sqlite dbo up to date

This commit is contained in:
José Lorenzo Rodríguez 2010-11-26 23:46:34 -04:30
parent b6731dd9ad
commit 41ee035d28
3 changed files with 174 additions and 200 deletions

View file

@ -88,6 +88,22 @@ class DboSource extends DataSource {
*/
private $__sqlOps = array('like', 'ilike', 'or', 'not', 'in', 'between', 'regexp', 'similar to');
/**
* Indicates that a transaction have been started
*
* @var boolean
* @access protected
*/
protected $_transactionStarted = false;
/**
* Indicates the level of nested transactions
*
* @var integer
* @access protected
*/
protected $_transactionNesting = 0;
/**
* Index of basic SQL commands
*