_dbHandle = sqlite_open($config->file, 0666, $error)) { return $this->_dbHandle; } /** 数据库异常 */ throw new Typecho_Db_Adapter_Exception($error); } /** * 获取数据库版本 * * @param mixed $handle * @return string */ public function getVersion($handle) { return 'ext:sqlite ' . sqlite_libversion(); } /** * 执行数据库查询 * * @param string $query * @param mixed $handle * @param int $op * @param null $action * @return resource|SQLiteResult * @throws Typecho_Db_Query_Exception */ public function query($query, $handle, $op = Typecho_Db::READ, $action = NULL) { if ($resource = @sqlite_query($query instanceof Typecho_Db_Query ? $query->__toString() : $query, $handle)) { return $resource; } /** 数据库异常 */ $errorCode = sqlite_last_error($this->_dbHandle); throw new Typecho_Db_Query_Exception(sqlite_error_string($errorCode), $errorCode); } /** * 将数据查询的其中一行作为数组取出,其中字段名对应数组键值 * * @param resource $resource 查询返回资源标识 * @return array */ public function fetch($resource) { return Typecho_Common::filterSQLite2ColumnName(sqlite_fetch_array($resource, SQLITE_ASSOC)); } /** * 将数据查询的其中一行作为对象取出,其中字段名对应对象属性 * * @param resource $resource 查询的资源数据 * @return object */ public function fetchObject($resource) { return (object) $this->fetch($resource); } /** * 引号转义函数 * * @param string $string 需要转义的字符串 * @return string */ public function quoteValue($string) { return '\'' . str_replace('\'', '\'\'', $string) . '\''; } /** * 对象引号过滤 * * @access public * @param string $string * @return string */ public function quoteColumn($string) { return '"' . $string . '"'; } /** * 合成查询语句 * * @access public * @param array $sql 查询对象词法数组 * @return string */ public function parseSelect(array $sql) { if (!empty($sql['join'])) { foreach ($sql['join'] as $val) { list($table, $condition, $op) = $val; $sql['table'] = "{$sql['table']} {$op} JOIN {$table} ON {$condition}"; } } $sql['limit'] = (0 == strlen($sql['limit'])) ? NULL : ' LIMIT ' . $sql['limit']; $sql['offset'] = (0 == strlen($sql['offset'])) ? NULL : ' OFFSET ' . $sql['offset']; return Typecho_Common::filterSQLite2CountQuery('SELECT ' . $sql['fields'] . ' FROM ' . $sql['table'] . $sql['where'] . $sql['group'] . $sql['having'] . $sql['order'] . $sql['limit'] . $sql['offset']); } /** * 取出最后一次查询影响的行数 * * @param resource $resource 查询的资源数据 * @param mixed $handle 连接对象 * @return integer */ public function affectedRows($resource, $handle) { return sqlite_changes($handle); } /** * 取出最后一次插入返回的主键值 * * @param resource $resource 查询的资源数据 * @param mixed $handle 连接对象 * @return integer */ public function lastInsertId($resource, $handle) { return sqlite_last_insert_rowid($handle); } }