home *** CD-ROM | disk | FTP | other *** search
- <?php
- //
- // +----------------------------------------------------------------------+
- // | PHP version 4.0 |
- // +----------------------------------------------------------------------+
- // | Copyright (c) 1997-2001 The PHP Group |
- // +----------------------------------------------------------------------+
- // | This source file is subject to version 2.02 of the PHP license, |
- // | that is bundled with this package in the file LICENSE, and is |
- // | available at through the world-wide-web at |
- // | http://www.php.net/license/2_02.txt. |
- // | If you did not receive a copy of the PHP license and are unable to |
- // | obtain it through the world-wide-web, please send a note to |
- // | license@php.net so we can mail you a copy immediately. |
- // +----------------------------------------------------------------------+
- // | Authors: Sterling Hughes <sterling@php.net> |
- // +----------------------------------------------------------------------+
- //
- // $Id: sybase.php,v 1.20.2.1 2001/11/13 01:26:43 ssb Exp $
- //
- // Database independent query interface definition for PHP's Sybase
- // extension.
- //
-
- require_once 'DB/common.php';
-
- class DB_sybase extends DB_common
- {
- // {{{ properties
-
- var $connection;
- var $phptype, $dbsyntax;
- var $prepare_tokens = array();
- var $prepare_types = array();
-
- // }}}
- // {{{ constructor
-
- function DB_sybase()
- {
- $this->DB_common();
- $this->phptype = 'sybase';
- $this->dbsyntax = 'sybase';
- $this->features = array(
- 'prepare' => false,
- 'pconnect' => true,
- 'transactions' => false,
- 'limit' => 'emulate'
- );
- }
-
- // }}}
- // {{{ connect()
-
- function connect($dsninfo, $persistent = false)
- {
- if (!DB::assertExtension('sybase'))
- return $this->raiseError(DB_ERROR_EXTENSION_NOT_FOUND);
-
- $this->dsn = $dsninfo;
- $user = $dsninfo['username'];
- $pw = $dsninfo['password'];
-
- $dbhost = $dsninfo['hostspec'] ? $dsninfo['hostspec'] : 'localhost';
- $connect_function = $persistent ? 'sybase_pconnect' : 'sybase_connect';
-
- if ($dbhost && $user && $pw) {
- $conn = $connect_function($dbhost, $user, $pw);
- } elseif ($dbhost && $user) {
- $conn = $connect_function($dbhost, $user);
- } elseif ($dbhost) {
- $conn = $connect_function($dbhost);
- } else {
- $conn = $connect_function();
- }
-
- if (!$conn) {
- return $this->raiseError(DB_ERROR_CONNECT_FAILED);
- }
-
- if ($dsninfo['database']) {
- if (!@sybase_select_db($dsninfo['database'], $conn)) {
- return $this->raiseError(DB_ERROR_NODBSELECTED);
- }
- }
- $this->connection = $conn;
- return DB_OK;
- }
-
- // }}}
- // {{{ disconnect()
-
- function disconnect()
- {
- $ret = @sybase_close($this->connection);
- $this->connection = null;
- return $ret;
- }
-
- // }}}
- // {{{ simpleQuery()
-
- function simpleQuery($query)
- {
- $this->last_query = $query;
- $query = $this->modifyQuery($query);
- $result = @sybase_query($query, $this->connection);
- if (!$result) {
- return $this->raiseError();
- }
- // Determine which queries that should return data, and which
- // should return an error code only.
- return DB::isManip($query) ? DB_OK : $result;
- }
-
- // }}}
- // {{{ nextResult()
-
- /**
- * Move the internal sybase result pointer to the next available result
- *
- * @param a valid fbsql result resource
- *
- * @access public
- *
- * @return true if a result is available otherwise return false
- */
- function nextResult($result)
- {
- return false;
- }
-
- // }}}
- // {{{ fetchRow()
- function &fetchRow($result, $fetchmode = DB_FETCHMODE_DEFAULT, $rownum=null)
- {
- if ($fetchmode == DB_FETCHMODE_DEFAULT) {
- $fetchmode = $this->fetchmode;
- }
- $res = $this->fetchInto ($result, $arr, $fetchmode, $rownum);
- if ($res !== DB_OK) {
- return $res;
- }
- return $arr;
- }
-
- // }}}
- // {{{ fetchInto()
-
- function fetchInto($result, &$ar, $fetchmode, $rownum=null)
- {
- if ($rownum !== null) {
- if (!sybase_data_seek($result, $rownum)) {
- return $this->raiseError();
- }
- }
- $ar = ($fetchmode & DB_FETCHMODE_ASSOC) ? @sybase_fetch_array($result) : @sybase_fetch_row($result);
- if (!$ar) {
- // reported not work as seems that sybase_get_last_message()
- // always return a message here
- //if ($errmsg = sybase_get_last_message()) {
- // return $this->raiseError($errmsg);
- //} else {
- return null;
- //}
- }
- return DB_OK;
- }
-
- // }}}
- // {{{ freeResult()
-
- function freeResult($result)
- {
- if (is_resource($result)) {
- return @sybase_free_result($result);
- }
- if (!isset($this->prepare_tokens[(int)$result])) {
- return false;
- }
- unset($this->prepare_tokens[(int)$result]);
- unset($this->prepare_types[(int)$result]);
- return true;
- }
-
- // }}}
- // {{{ numCols()
-
- function numCols($result)
- {
- $cols = @sybase_num_fields($result);
- if (!$cols) {
- return $this->raiseError();
- }
- return $cols;
- }
-
- // }}}
- // {{{ affectedRows()
-
- /**
- * Gets the number of rows affected by the data manipulation
- * query. For other queries, this function returns 0.
- *
- * @return number of rows affected by the last query
- */
-
- function affectedRows()
- {
- if (DB::isManip($this->last_query)) {
- $result = @sybase_affected_rows($this->connection);
- } else {
- $result = 0;
- }
- return $result;
- }
-
- // }}}
- // {{{ getSpecialQuery()
-
- /**
- * Returns the query needed to get some backend info
- * @param string $type What kind of info you want to retrieve
- * @return string The SQL query string
- */
- function getSpecialQuery($type)
- {
- switch ($type) {
- case 'tables':
- $sql = "select name from sysobjects where type = 'U' order by name";
- break;
- case 'views':
- $sql = "select name from sysobjects where type = 'V'";
- break;
- default:
- return null;
- }
- return $sql;
- }
-
- // }}}
-
- }
-
- /*
- * Local variables:
- * tab-width: 4
- * c-basic-offset: 4
- * End:
- */
- ?>