connection = new PDO($config['dsn'], $config['username'], $config['password'], $config['options']); } catch (PDOException $e) { throw $this->convertException($e); } if (!$this->connection) { throw new DibiDriverException('Connecting error'); } $this->connection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); } /** * Disconnects from a database * * @return void */ public function disconnect() { $this->connection = NULL; } /** * Executes the SQL query * * @param string SQL statement. * @return bool have resultset? * @throws DibiDriverException */ public function query($sql) { try { $this->resultset = $this->connection->query($sql); } catch (PDOException $e) { throw $this->convertException($e); } return $this->resultset instanceof PDOStatement; } /** * Gets the number of affected rows by the last INSERT, UPDATE or DELETE query * * @return int number of rows or FALSE on error */ public function affectedRows() { throw new BadMethodCallException(__METHOD__ . ' is not implemented'); } /** * Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query * * @return int|FALSE int on success or FALSE on failure */ public function insertId($sequence) { return $this->connection->lastInsertId(); } /** * Begins a transaction (if supported). * @return void */ public function begin() { try { $this->connection->beginTransaction(); } catch (PDOException $e) { throw $this->convertException($e); } } /** * Commits statements in a transaction. * @return void */ public function commit() { try { $this->connection->commit(); } catch (PDOException $e) { throw $this->convertException($e); } } /** * Rollback changes in a transaction. * @return void */ public function rollback() { try { $this->connection->rollBack(); } catch (PDOException $e) { throw $this->convertException($e); } } /** * Format to SQL command * * @param string value * @param string type (dibi::FIELD_TEXT, dibi::FIELD_BOOL, dibi::FIELD_DATE, dibi::FIELD_DATETIME, dibi::IDENTIFIER) * @return string formatted value * @throws InvalidArgumentException */ public function format($value, $type) { if ($type === dibi::FIELD_TEXT) return $this->connection->quote($value); if ($type === dibi::IDENTIFIER) return $value; // quoting is not supported by PDO if ($type === dibi::FIELD_BOOL) return $value ? 1 : 0; if ($type === dibi::FIELD_DATE) return date("'Y-m-d'", $value); if ($type === dibi::FIELD_DATETIME) return date("'Y-m-d H:i:s'", $value); throw new InvalidArgumentException('Unsupported formatting type'); } /** * Injects LIMIT/OFFSET to the SQL query * * @param string &$sql The SQL query that will be modified. * @param int $limit * @param int $offset * @return void */ public function applyLimit(&$sql, $limit, $offset) { throw new BadMethodCallException(__METHOD__ . ' is not implemented'); } /** * Returns the number of rows in a result set * * @return int */ public function rowCount() { throw new DibiDriverException('Row count is not available for unbuffered queries'); } /** * Fetches the row at current position and moves the internal cursor to the next position * internal usage only * * @return array|FALSE array on success, FALSE if no next record */ public function fetch() { return $this->resultset->fetch(PDO::FETCH_ASSOC); } /** * Moves cursor position without fetching row * * @param int the 0-based cursor pos to seek to * @return boolean TRUE on success, FALSE if unable to seek to specified record * @throws DibiException */ public function seek($row) { throw new DibiDriverException('Cannot seek an unbuffered result set'); } /** * Frees the resources allocated for this result set * * @return void */ public function free() { $this->resultset = NULL; } /** this is experimental */ public function buildMeta() { $count = $this->resultset->columnCount(); $meta = array(); for ($index = 0; $index < $count; $index++) { $meta = $this->resultset->getColumnMeta($index); // TODO: $meta['type'] = dibi::FIELD_UNKNOWN; $name = $meta['name']; $meta[$name] = $meta; } return $meta; } /** * Returns the connection resource * * @return PDO */ public function getResource() { return $this->connection; } /** * Returns the resultset resource * * @return PDOStatement */ public function getResultResource() { return $this->resultset; } /** * Gets a information of the current database. * * @return DibiReflection */ function getDibiReflection() {} /** * Disconnects from a database * * @param PDOException * @return DibiDriverException */ private function convertException($e) { return new DibiDriverException($e->getMessage(), $e->getCode()); } }