'TESTS_ZEND_DB_ADAPTER_PDO_SQLITE_DATABASE' ); return parent::getParams($constants); } protected function _getSqlCreateTable($tableName) { return 'CREATE TABLE IF NOT EXISTS ' . $this->_db->quoteIdentifier($tableName); } protected function _getSqlDropTable($tableName) { return 'DROP TABLE IF EXISTS ' . $this->_db->quoteIdentifier($tableName); } public function getSqlType($type) { if ($type == 'IDENTITY') { return 'INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT'; } return $type; } protected function _getSqlCreateView($viewName) { return 'CREATE VIEW IF NOT EXISTS ' . $this->_db->quoteIdentifier($viewName, true); } protected function _getSqlDropView($viewName) { return 'DROP VIEW IF EXISTS ' . $this->_db->quoteIdentifier($viewName, true); } }