2007-05-13 18:32:03 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This file is part of the "dibi" project (http://dibi.texy.info/)
|
|
|
|
*
|
2007-06-24 23:49:57 +00:00
|
|
|
* @author David Grudl
|
|
|
|
* @copyright Copyright (c) 2005-2007 David Grudl aka -dgx- (http://www.dgx.cz)
|
|
|
|
* @license New BSD License
|
|
|
|
* @version $Revision$ $Date$
|
|
|
|
* @category Database
|
|
|
|
* @package Dibi
|
2007-05-13 18:32:03 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The dibi driver for MS SQL database
|
|
|
|
*
|
|
|
|
*/
|
2007-09-29 07:53:25 +00:00
|
|
|
class DibiMsSqlDriver extends DibiDriver
|
2007-05-13 18:32:03 +00:00
|
|
|
{
|
2007-09-29 07:53:25 +00:00
|
|
|
public $formats = array(
|
|
|
|
'TRUE' => "1",
|
|
|
|
'FALSE' => "0",
|
|
|
|
'date' => "'Y-m-d'",
|
|
|
|
'datetime' => "'Y-m-d H:i:s'",
|
|
|
|
);
|
2007-05-13 18:32:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array connect configuration
|
|
|
|
*/
|
|
|
|
public function __construct($config)
|
|
|
|
{
|
|
|
|
if (!isset($config['host'])) $config['host'] = NULL;
|
|
|
|
if (!isset($config['username'])) $config['username'] = NULL;
|
|
|
|
if (!isset($config['password'])) $config['password'] = NULL;
|
|
|
|
|
|
|
|
parent::__construct($config);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected function connect()
|
|
|
|
{
|
2007-09-29 07:53:25 +00:00
|
|
|
if (!extension_loaded('mssql')) {
|
|
|
|
throw new DibiException("PHP extension 'mssql' is not loaded");
|
|
|
|
}
|
|
|
|
|
|
|
|
$config = $this->getConfig();
|
2007-05-13 18:32:03 +00:00
|
|
|
|
2007-08-23 17:12:58 +00:00
|
|
|
if (empty($config['persistent'])) {
|
2007-06-25 17:02:12 +00:00
|
|
|
$connection = @mssql_connect($config['host'], $config['username'], $config['password'], TRUE);
|
2007-08-23 17:12:58 +00:00
|
|
|
} else {
|
2007-06-25 17:02:12 +00:00
|
|
|
$connection = @mssql_pconnect($config['host'], $config['username'], $config['password']);
|
2007-08-23 17:12:58 +00:00
|
|
|
}
|
2007-05-13 18:32:03 +00:00
|
|
|
|
2007-08-23 17:12:58 +00:00
|
|
|
if (!is_resource($connection)) {
|
2007-09-29 07:53:25 +00:00
|
|
|
throw new DibiDatabaseException("Can't connect to DB");
|
2007-08-23 17:12:58 +00:00
|
|
|
}
|
2007-05-13 18:32:03 +00:00
|
|
|
|
2007-08-23 17:12:58 +00:00
|
|
|
if (!empty($config['database']) && !@mssql_select_db($config['database'], $connection)) {
|
2007-09-29 07:53:25 +00:00
|
|
|
throw new DibiDatabaseException("Can't select DB '$config[database]'");
|
2007-05-13 18:32:03 +00:00
|
|
|
}
|
|
|
|
|
2007-09-29 07:53:25 +00:00
|
|
|
dibi::notify('connected', $this);
|
2007-06-25 17:02:12 +00:00
|
|
|
return $connection;
|
2007-05-13 18:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-09-29 07:53:25 +00:00
|
|
|
protected function doQuery($sql)
|
2007-05-13 18:32:03 +00:00
|
|
|
{
|
2007-08-28 22:13:53 +00:00
|
|
|
$res = @mssql_query($sql, $this->getConnection());
|
2007-05-13 18:32:03 +00:00
|
|
|
|
2007-08-28 22:13:53 +00:00
|
|
|
if ($res === FALSE) {
|
2007-09-29 07:53:25 +00:00
|
|
|
throw new DibiDatabaseException('Query error', 0, $sql);
|
2007-05-13 18:32:03 +00:00
|
|
|
|
2007-08-28 22:13:53 +00:00
|
|
|
} elseif (is_resource($res)) {
|
2007-05-13 18:32:03 +00:00
|
|
|
return new DibiMSSqlResult($res);
|
2007-08-28 22:13:53 +00:00
|
|
|
}
|
2007-05-13 18:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
public function affectedRows()
|
|
|
|
{
|
2007-08-28 22:13:53 +00:00
|
|
|
$rows = mssql_rows_affected($this->getConnection());
|
|
|
|
return $rows < 0 ? FALSE : $rows;
|
2007-05-13 18:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
public function insertId()
|
|
|
|
{
|
2007-08-28 22:25:01 +00:00
|
|
|
throw new DibiException(__METHOD__ . ' is not implemented');
|
2007-05-13 18:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
public function begin()
|
|
|
|
{
|
2007-09-29 07:53:25 +00:00
|
|
|
$this->doQuery('BEGIN TRANSACTION');
|
|
|
|
dibi::notify('begin', $this);
|
2007-05-13 18:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
public function commit()
|
|
|
|
{
|
2007-09-29 07:53:25 +00:00
|
|
|
$this->doQuery('COMMIT');
|
|
|
|
dibi::notify('commit', $this);
|
2007-05-13 18:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
public function rollback()
|
|
|
|
{
|
2007-09-29 07:53:25 +00:00
|
|
|
$this->doQuery('ROLLBACK');
|
|
|
|
dibi::notify('rollback', $this);
|
2007-05-13 18:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
public function errorInfo()
|
|
|
|
{
|
2007-05-17 21:02:26 +00:00
|
|
|
return array(
|
|
|
|
'message' => NULL,
|
|
|
|
'code' => NULL,
|
|
|
|
);
|
2007-05-13 18:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-08-09 03:31:34 +00:00
|
|
|
public function escape($value, $appendQuotes = TRUE)
|
2007-05-13 18:32:03 +00:00
|
|
|
{
|
|
|
|
$value = str_replace("'", "''", $value);
|
|
|
|
return $appendQuotes
|
|
|
|
? "'" . $value . "'"
|
|
|
|
: $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
public function delimite($value)
|
|
|
|
{
|
|
|
|
return '[' . str_replace('.', '].[', $value) . ']';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
public function getMetaData()
|
|
|
|
{
|
2007-08-28 22:25:01 +00:00
|
|
|
throw new DibiException(__METHOD__ . ' is not implemented');
|
2007-05-13 18:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
/**
|
|
|
|
* @see DibiDriver::applyLimit()
|
|
|
|
*/
|
|
|
|
public function applyLimit(&$sql, $limit, $offset = 0)
|
|
|
|
{
|
|
|
|
// offset suppot is missing...
|
2007-08-23 17:12:58 +00:00
|
|
|
if ($limit >= 0) {
|
2007-05-13 18:32:03 +00:00
|
|
|
$sql = 'SELECT TOP ' . (int) $limit . ' * FROM (' . $sql . ')';
|
2007-08-23 17:12:58 +00:00
|
|
|
}
|
2007-05-13 18:32:03 +00:00
|
|
|
|
2007-08-23 17:12:58 +00:00
|
|
|
if ($offset) {
|
2007-09-29 07:53:25 +00:00
|
|
|
throw new DibiException('Offset is not implemented');
|
2007-08-23 17:12:58 +00:00
|
|
|
}
|
2007-05-13 18:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-29 07:53:25 +00:00
|
|
|
} // DibiMsSqlDriver
|
2007-05-13 18:32:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DibiMSSqlResult extends DibiResult
|
|
|
|
{
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
public function rowCount()
|
|
|
|
{
|
|
|
|
return mssql_num_rows($this->resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
protected function doFetch()
|
|
|
|
{
|
|
|
|
return mssql_fetch_assoc($this->resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
public function seek($row)
|
|
|
|
{
|
|
|
|
return mssql_data_seek($this->resource, $row);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
protected function free()
|
|
|
|
{
|
|
|
|
mssql_free_result($this->resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 00:57:28 +00:00
|
|
|
|
2007-05-13 18:32:03 +00:00
|
|
|
/** this is experimental */
|
|
|
|
protected function buildMeta()
|
|
|
|
{
|
|
|
|
static $types = array(
|
|
|
|
'CHAR' => dibi::FIELD_TEXT,
|
|
|
|
'COUNTER' => dibi::FIELD_COUNTER,
|
|
|
|
'VARCHAR' => dibi::FIELD_TEXT,
|
|
|
|
'LONGCHAR' => dibi::FIELD_TEXT,
|
|
|
|
'INTEGER' => dibi::FIELD_INTEGER,
|
|
|
|
'DATETIME' => dibi::FIELD_DATETIME,
|
|
|
|
'CURRENCY' => dibi::FIELD_FLOAT,
|
|
|
|
'BIT' => dibi::FIELD_BOOL,
|
|
|
|
'LONGBINARY'=> dibi::FIELD_BINARY,
|
|
|
|
'SMALLINT' => dibi::FIELD_INTEGER,
|
|
|
|
'BYTE' => dibi::FIELD_INTEGER,
|
|
|
|
'BIGINT' => dibi::FIELD_INTEGER,
|
|
|
|
'INT' => dibi::FIELD_INTEGER,
|
|
|
|
'TINYINT' => dibi::FIELD_INTEGER,
|
|
|
|
'REAL' => dibi::FIELD_FLOAT,
|
|
|
|
'DOUBLE' => dibi::FIELD_FLOAT,
|
|
|
|
'DECIMAL' => dibi::FIELD_FLOAT,
|
|
|
|
'NUMERIC' => dibi::FIELD_FLOAT,
|
|
|
|
'MONEY' => dibi::FIELD_FLOAT,
|
|
|
|
'SMALLMONEY'=> dibi::FIELD_FLOAT,
|
|
|
|
'FLOAT' => dibi::FIELD_FLOAT,
|
|
|
|
'YESNO' => dibi::FIELD_BOOL,
|
|
|
|
// and many others?
|
|
|
|
);
|
|
|
|
|
|
|
|
$count = mssql_num_fields($this->resource);
|
|
|
|
$this->meta = $this->convert = array();
|
|
|
|
for ($index = 0; $index < $count; $index++) {
|
|
|
|
|
|
|
|
$tmp = mssql_fetch_field($this->resource, $index);
|
|
|
|
$type = strtoupper($tmp->type);
|
|
|
|
$info['native'] = $tmp->type;
|
|
|
|
$info['type'] = isset($types[$type]) ? $types[$type] : dibi::FIELD_UNKNOWN;
|
|
|
|
$info['length'] = $tmp->max_length;
|
|
|
|
$info['table'] = $tmp->column_source;
|
|
|
|
|
|
|
|
$this->meta[$tmp->name] = $info;
|
|
|
|
$this->convert[$tmp->name] = $info['type'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // class DibiMSSqlResult
|