⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sybase.php

📁 FP2 CRM code+Mysql DB
💻 PHP
📖 第 1 页 / 共 2 页
字号:
<?php/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: *//** * The PEAR DB driver for PHP's sybase extension * for interacting with Sybase databases * * PHP versions 4 and 5 * * LICENSE: This source file is subject to version 3.0 of the PHP license * that is available through the world-wide-web at the following URI: * http://www.php.net/license/3_0.txt.  If you did not receive a copy of * the PHP License and are unable to obtain it through the web, please * send a note to license@php.net so we can mail you a copy immediately. * * @category   Database * @package    DB * @author     Sterling Hughes <sterling@php.net> * @author     Ant鬾io Carlos Ven鈔cio J鷑ior <floripa@php.net> * @author     Daniel Convissor <danielc@php.net> * @copyright  1997-2005 The PHP Group * @license    http://www.php.net/license/3_0.txt  PHP License 3.0 * @version    CVS: $Id: sybase.php,v 1.78 2005/02/20 00:44:48 danielc Exp $ * @link       http://pear.php.net/package/DB *//** * Obtain the DB_common class so it can be extended from */require_once 'DB/common.php';/** * The methods PEAR DB uses to interact with PHP's sybase extension * for interacting with Sybase databases * * These methods overload the ones declared in DB_common. * * WARNING:  This driver may fail with multiple connections under the * same user/pass/host and different databases. * * @category   Database * @package    DB * @author     Sterling Hughes <sterling@php.net> * @author     Ant鬾io Carlos Ven鈔cio J鷑ior <floripa@php.net> * @author     Daniel Convissor <danielc@php.net> * @copyright  1997-2005 The PHP Group * @license    http://www.php.net/license/3_0.txt  PHP License 3.0 * @version    Release: 1.7.6 * @link       http://pear.php.net/package/DB */class DB_sybase extends DB_common{    // {{{ properties    /**     * The DB driver type (mysql, oci8, odbc, etc.)     * @var string     */    var $phptype = 'sybase';    /**     * The database syntax variant to be used (db2, access, etc.), if any     * @var string     */    var $dbsyntax = 'sybase';    /**     * The capabilities of this DB implementation     *     * The 'new_link' element contains the PHP version that first provided     * new_link support for this DBMS.  Contains false if it's unsupported.     *     * Meaning of the 'limit' element:     *   + 'emulate' = emulate with fetch row by number     *   + 'alter'   = alter the query     *   + false     = skip rows     *     * @var array     */    var $features = array(        'limit'         => 'emulate',        'new_link'      => false,        'numrows'       => true,        'pconnect'      => true,        'prepare'       => false,        'ssl'           => false,        'transactions'  => true,    );    /**     * A mapping of native error codes to DB error codes     * @var array     */    var $errorcode_map = array(    );    /**     * The raw database connection created by PHP     * @var resource     */    var $connection;    /**     * The DSN information for connecting to a database     * @var array     */    var $dsn = array();    /**     * Should data manipulation queries be committed automatically?     * @var bool     * @access private     */    var $autocommit = true;    /**     * The quantity of transactions begun     *     * {@internal  While this is private, it can't actually be designated     * private in PHP 5 because it is directly accessed in the test suite.}}     *     * @var integer     * @access private     */    var $transaction_opcount = 0;    /**     * The database specified in the DSN     *     * It's a fix to allow calls to different databases in the same script.     *     * @var string     * @access private     */    var $_db = '';    // }}}    // {{{ constructor    /**     * This constructor calls <kbd>$this->DB_common()</kbd>     *     * @return void     */    function DB_sybase()    {        $this->DB_common();    }    // }}}    // {{{ connect()    /**     * Connect to the database server, log in and open the database     *     * Don't call this method directly.  Use DB::connect() instead.     *     * PEAR DB's sybase driver supports the following extra DSN options:     *   + appname       The application name to use on this connection.     *                   Available since PEAR DB 1.7.0.     *   + charset       The character set to use on this connection.     *                   Available since PEAR DB 1.7.0.     *     * @param array $dsn         the data source name     * @param bool  $persistent  should the connection be persistent?     *     * @return int  DB_OK on success. A DB_Error object on failure.     */    function connect($dsn, $persistent = false)    {        if (!PEAR::loadExtension('sybase') &&            !PEAR::loadExtension('sybase_ct'))        {            return $this->raiseError(DB_ERROR_EXTENSION_NOT_FOUND);        }        $this->dsn = $dsn;        if ($dsn['dbsyntax']) {            $this->dbsyntax = $dsn['dbsyntax'];        }        $dsn['hostspec'] = $dsn['hostspec'] ? $dsn['hostspec'] : 'localhost';        $dsn['password'] = !empty($dsn['password']) ? $dsn['password'] : false;        $dsn['charset'] = isset($dsn['charset']) ? $dsn['charset'] : false;        $dsn['appname'] = isset($dsn['appname']) ? $dsn['appname'] : false;        $connect_function = $persistent ? 'sybase_pconnect' : 'sybase_connect';        if ($dsn['username']) {            $this->connection = @$connect_function($dsn['hostspec'],                                                   $dsn['username'],                                                   $dsn['password'],                                                   $dsn['charset'],                                                   $dsn['appname']);        } else {            return $this->raiseError(DB_ERROR_CONNECT_FAILED,                                     null, null, null,                                     'The DSN did not contain a username.');        }        if (!$this->connection) {            return $this->raiseError(DB_ERROR_CONNECT_FAILED,                                     null, null, null,                                     @sybase_get_last_message());        }        if ($dsn['database']) {            if (!@sybase_select_db($dsn['database'], $this->connection)) {                return $this->raiseError(DB_ERROR_NODBSELECTED,                                         null, null, null,                                         @sybase_get_last_message());            }            $this->_db = $dsn['database'];        }        return DB_OK;    }    // }}}    // {{{ disconnect()    /**     * Disconnects from the database server     *     * @return bool  TRUE on success, FALSE on failure     */    function disconnect()    {        $ret = @sybase_close($this->connection);        $this->connection = null;        return $ret;    }    // }}}    // {{{ simpleQuery()    /**     * Sends a query to the database server     *     * @param string  the SQL query string     *     * @return mixed  + a PHP result resrouce for successful SELECT queries     *                + the DB_OK constant for other successful queries     *                + a DB_Error object on failure     */    function simpleQuery($query)    {        $ismanip = DB::isManip($query);        $this->last_query = $query;        if (!@sybase_select_db($this->_db, $this->connection)) {            return $this->sybaseRaiseError(DB_ERROR_NODBSELECTED);        }        $query = $this->modifyQuery($query);        if (!$this->autocommit && $ismanip) {            if ($this->transaction_opcount == 0) {                $result = @sybase_query('BEGIN TRANSACTION', $this->connection);                if (!$result) {                    return $this->sybaseRaiseError();                }            }            $this->transaction_opcount++;        }        $result = @sybase_query($query, $this->connection);        if (!$result) {            return $this->sybaseRaiseError();        }        if (is_resource($result)) {            return $result;        }        // Determine which queries that should return data, and which        // should return an error code only.        return $ismanip ? DB_OK : $result;    }    // }}}    // {{{ nextResult()    /**     * Move the internal sybase result pointer to the next available result     *     * @param a valid sybase result resource     *     * @access public     *     * @return true if a result is available otherwise return false     */    function nextResult($result)    {        return false;    }    // }}}    // {{{ fetchInto()    /**     * Places a row from the result set into the given array     *     * Formating of the array and the data therein are configurable.     * See DB_result::fetchInto() for more information.     *     * This method is not meant to be called directly.  Use     * DB_result::fetchInto() instead.  It can't be declared "protected"     * because DB_result is a separate object.     *     * @param resource $result    the query result resource     * @param array    $arr       the referenced array to put the data in     * @param int      $fetchmode how the resulting array should be indexed     * @param int      $rownum    the row number to fetch (0 = first row)     *     * @return mixed  DB_OK on success, NULL when the end of a result set is     *                 reached or on failure     *     * @see DB_result::fetchInto()     */    function fetchInto($result, &$arr, $fetchmode, $rownum = null)    {        if ($rownum !== null) {            if (!@sybase_data_seek($result, $rownum)) {                return null;            }        }        if ($fetchmode & DB_FETCHMODE_ASSOC) {            if (function_exists('sybase_fetch_assoc')) {                $arr = @sybase_fetch_assoc($result);            } else {                if ($arr = @sybase_fetch_array($result)) {                    foreach ($arr as $key => $value) {                        if (is_int($key)) {                            unset($arr[$key]);                        }                    }                }            }            if ($this->options['portability'] & DB_PORTABILITY_LOWERCASE && $arr) {                $arr = array_change_key_case($arr, CASE_LOWER);            }        } else {            $arr = @sybase_fetch_row($result);        }        if (!$arr) {            return null;        }        if ($this->options['portability'] & DB_PORTABILITY_RTRIM) {            $this->_rtrimArrayValues($arr);        }        if ($this->options['portability'] & DB_PORTABILITY_NULL_TO_EMPTY) {            $this->_convertNullArrayValuesToEmpty($arr);        }        return DB_OK;    }    // }}}    // {{{ freeResult()    /**     * Deletes the result set and frees the memory occupied by the result set     *     * This method is not meant to be called directly.  Use     * DB_result::free() instead.  It can't be declared "protected"     * because DB_result is a separate object.     *     * @param resource $result  PHP's query result resource     *     * @return bool  TRUE on success, FALSE if $result is invalid     *     * @see DB_result::free()     */    function freeResult($result)    {        return @sybase_free_result($result);    }    // }}}    // {{{ numCols()    /**     * Gets the number of columns in a result set     *     * This method is not meant to be called directly.  Use     * DB_result::numCols() instead.  It can't be declared "protected"     * because DB_result is a separate object.     *     * @param resource $result  PHP's query result resource     *     * @return int  the number of columns.  A DB_Error object on failure.     *     * @see DB_result::numCols()     */    function numCols($result)    {        $cols = @sybase_num_fields($result);        if (!$cols) {            return $this->sybaseRaiseError();        }        return $cols;    }    // }}}    // {{{ numRows()    /**     * Gets the number of rows in a result set     *     * This method is not meant to be called directly.  Use     * DB_result::numRows() instead.  It can't be declared "protected"     * because DB_result is a separate object.     *     * @param resource $result  PHP's query result resource     *     * @return int  the number of rows.  A DB_Error object on failure.     *     * @see DB_result::numRows()     */    function numRows($result)    {        $rows = @sybase_num_rows($result);        if ($rows === false) {            return $this->sybaseRaiseError();        }        return $rows;    }    // }}}    // {{{ affectedRows()    /**     * Determines the number of rows affected by a data maniuplation query     *     * 0 is returned for queries that don't manipulate data.     *     * @return int  the number of rows.  A DB_Error object on failure.     */    function affectedRows()    {        if (DB::isManip($this->last_query)) {            $result = @sybase_affected_rows($this->connection);        } else {            $result = 0;        }        return $result;     }    // }}}    // {{{ nextId()    /**     * Returns the next free id in a sequence     *     * @param string  $seq_name  name of the sequence     * @param boolean $ondemand  when true, the seqence is automatically     *                            created if it does not exist

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -