DB
[ class tree: DB ] [ index: DB ] [ all elements ]

Source for file sybase.php

Documentation is available at sybase.php

  1. <?php
  2.  
  3. /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
  4.  
  5. /**
  6.  * The PEAR DB driver for PHP's sybase extension
  7.  * for interacting with Sybase databases
  8.  *
  9.  * PHP versions 4 and 5
  10.  *
  11.  * LICENSE: This source file is subject to version 3.0 of the PHP license
  12.  * that is available through the world-wide-web at the following URI:
  13.  * http://www.php.net/license/3_0.txt.  If you did not receive a copy of
  14.  * the PHP License and are unable to obtain it through the web, please
  15.  * send a note to license@php.net so we can mail you a copy immediately.
  16.  *
  17.  * @category   Database
  18.  * @package    DB
  19.  * @author     Sterling Hughes <sterling@php.net>
  20.  * @author     Antônio Carlos Venâncio Júnior <floripa@php.net>
  21.  * @author     Daniel Convissor <danielc@php.net>
  22.  * @copyright  1997-2007 The PHP Group
  23.  * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
  24.  * @version    CVS: $Id: sybase.php,v 1.87 2007/09/21 13:40:42 aharvey Exp $
  25.  * @link       http://pear.php.net/package/DB
  26.  */
  27.  
  28. /**
  29.  * Obtain the DB_common class so it can be extended from
  30.  */
  31. require_once 'DB/common.php';
  32.  
  33. /**
  34.  * The methods PEAR DB uses to interact with PHP's sybase extension
  35.  * for interacting with Sybase databases
  36.  *
  37.  * These methods overload the ones declared in DB_common.
  38.  *
  39.  * WARNING:  This driver may fail with multiple connections under the
  40.  * same user/pass/host and different databases.
  41.  *
  42.  * @category   Database
  43.  * @package    DB
  44.  * @author     Sterling Hughes <sterling@php.net>
  45.  * @author     Antônio Carlos Venâncio Júnior <floripa@php.net>
  46.  * @author     Daniel Convissor <danielc@php.net>
  47.  * @copyright  1997-2007 The PHP Group
  48.  * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
  49.  * @version    Release: 1.7.14RC1
  50.  * @link       http://pear.php.net/package/DB
  51.  */
  52. class DB_sybase extends DB_common
  53. {
  54.     // {{{ properties
  55.  
  56.     /**
  57.      * The DB driver type (mysql, oci8, odbc, etc.)
  58.      * @var string 
  59.      */
  60.     var $phptype = 'sybase';
  61.  
  62.     /**
  63.      * The database syntax variant to be used (db2, access, etc.), if any
  64.      * @var string 
  65.      */
  66.     var $dbsyntax = 'sybase';
  67.  
  68.     /**
  69.      * The capabilities of this DB implementation
  70.      *
  71.      * The 'new_link' element contains the PHP version that first provided
  72.      * new_link support for this DBMS.  Contains false if it's unsupported.
  73.      *
  74.      * Meaning of the 'limit' element:
  75.      *   + 'emulate' = emulate with fetch row by number
  76.      *   + 'alter'   = alter the query
  77.      *   + false     = skip rows
  78.      *
  79.      * @var array 
  80.      */
  81.     var $features = array(
  82.         'limit'         => 'emulate',
  83.         'new_link'      => false,
  84.         'numrows'       => true,
  85.         'pconnect'      => true,
  86.         'prepare'       => false,
  87.         'ssl'           => false,
  88.         'transactions'  => true,
  89.     );
  90.  
  91.     /**
  92.      * A mapping of native error codes to DB error codes
  93.      * @var array 
  94.      */
  95.     var $errorcode_map = array(
  96.     );
  97.  
  98.     /**
  99.      * The raw database connection created by PHP
  100.      * @var resource 
  101.      */
  102.     var $connection;
  103.  
  104.     /**
  105.      * The DSN information for connecting to a database
  106.      * @var array 
  107.      */
  108.     var $dsn = array();
  109.  
  110.  
  111.     /**
  112.      * Should data manipulation queries be committed automatically?
  113.      * @var bool 
  114.      * @access private
  115.      */
  116.     var $autocommit = true;
  117.  
  118.     /**
  119.      * The quantity of transactions begun
  120.      *
  121.      * {@internal  While this is private, it can't actually be designated
  122.      * private in PHP 5 because it is directly accessed in the test suite.}}}
  123.      *
  124.      * @var integer 
  125.      * @access private
  126.      */
  127.     var $transaction_opcount = 0;
  128.  
  129.     /**
  130.      * The database specified in the DSN
  131.      *
  132.      * It's a fix to allow calls to different databases in the same script.
  133.      *
  134.      * @var string 
  135.      * @access private
  136.      */
  137.     var $_db '';
  138.  
  139.  
  140.     // }}}
  141.     // {{{ constructor
  142.  
  143.     /**
  144.      * This constructor calls <kbd>$this->DB_common()</kbd>
  145.      *
  146.      * @return void 
  147.      */
  148.     function DB_sybase()
  149.     {
  150.         $this->DB_common();
  151.     }
  152.  
  153.     // }}}
  154.     // {{{ connect()
  155.  
  156.     /**
  157.      * Connect to the database server, log in and open the database
  158.      *
  159.      * Don't call this method directly.  Use DB::connect() instead.
  160.      *
  161.      * PEAR DB's sybase driver supports the following extra DSN options:
  162.      *   + appname       The application name to use on this connection.
  163.      *                   Available since PEAR DB 1.7.0.
  164.      *   + charset       The character set to use on this connection.
  165.      *                   Available since PEAR DB 1.7.0.
  166.      *
  167.      * @param array $dsn         the data source name
  168.      * @param bool  $persistent  should the connection be persistent?
  169.      *
  170.      * @return int  DB_OK on success. A DB_Error object on failure.
  171.      */
  172.     function connect($dsn$persistent = false)
  173.     {
  174.         if (!PEAR::loadExtension('sybase'&&
  175.             !PEAR::loadExtension('sybase_ct'))
  176.         {
  177.             return $this->raiseError(DB_ERROR_EXTENSION_NOT_FOUND);
  178.         }
  179.  
  180.         $this->dsn = $dsn;
  181.         if ($dsn['dbsyntax']{
  182.             $this->dbsyntax = $dsn['dbsyntax'];
  183.         }
  184.  
  185.         $dsn['hostspec'$dsn['hostspec'$dsn['hostspec''localhost';
  186.         $dsn['password'!empty($dsn['password']$dsn['password': false;
  187.         $dsn['charset'= isset($dsn['charset']$dsn['charset': false;
  188.         $dsn['appname'= isset($dsn['appname']$dsn['appname': false;
  189.  
  190.         $connect_function $persistent 'sybase_pconnect' 'sybase_connect';
  191.  
  192.         if ($dsn['username']{
  193.             $this->connection = @$connect_function($dsn['hostspec'],
  194.                                                    $dsn['username'],
  195.                                                    $dsn['password'],
  196.                                                    $dsn['charset'],
  197.                                                    $dsn['appname']);
  198.         else {
  199.             return $this->raiseError(DB_ERROR_CONNECT_FAILED,
  200.                                      nullnullnull,
  201.                                      'The DSN did not contain a username.');
  202.         }
  203.  
  204.         if (!$this->connection{
  205.             return $this->raiseError(DB_ERROR_CONNECT_FAILED,
  206.                                      nullnullnull,
  207.                                      @sybase_get_last_message());
  208.         }
  209.  
  210.         if ($dsn['database']{
  211.             if (!@sybase_select_db($dsn['database']$this->connection)) {
  212.                 return $this->raiseError(DB_ERROR_NODBSELECTED,
  213.                                          nullnullnull,
  214.                                          @sybase_get_last_message());
  215.             }
  216.             $this->_db $dsn['database'];
  217.         }
  218.  
  219.         return DB_OK;
  220.     }
  221.  
  222.     // }}}
  223.     // {{{ disconnect()
  224.  
  225.     /**
  226.      * Disconnects from the database server
  227.      *
  228.      * @return bool  TRUE on success, FALSE on failure
  229.      */
  230.     function disconnect()
  231.     {
  232.         $ret @sybase_close($this->connection);
  233.         $this->connection = null;
  234.         return $ret;
  235.     }
  236.  
  237.     // }}}
  238.     // {{{ simpleQuery()
  239.  
  240.     /**
  241.      * Sends a query to the database server
  242.      *
  243.      * @param string  the SQL query string
  244.      *
  245.      * @return mixed  + a PHP result resrouce for successful SELECT queries
  246.      *                 + the DB_OK constant for other successful queries
  247.      *                 + a DB_Error object on failure
  248.      */
  249.     function simpleQuery($query)
  250.     {
  251.         $ismanip $this->_checkManip($query);
  252.         $this->last_query = $query;
  253.         if ($this->_db && !@sybase_select_db($this->_db$this->connection)) {
  254.             return $this->sybaseRaiseError(DB_ERROR_NODBSELECTED);
  255.         }
  256.         $query $this->modifyQuery($query);
  257.         if (!$this->autocommit && $ismanip{
  258.             if ($this->transaction_opcount == 0{
  259.                 $result @sybase_query('BEGIN TRANSACTION'$this->connection);
  260.                 if (!$result{
  261.                     return $this->sybaseRaiseError();
  262.                 }
  263.             }
  264.             $this->transaction_opcount++;
  265.         }
  266.         $result @sybase_query($query$this->connection);
  267.         if (!$result{
  268.             return $this->sybaseRaiseError();
  269.         }
  270.         if (is_resource($result)) {
  271.             return $result;
  272.         }
  273.         // Determine which queries that should return data, and which
  274.         // should return an error code only.
  275.         return $ismanip DB_OK : $result;
  276.     }
  277.  
  278.     // }}}
  279.     // {{{ nextResult()
  280.  
  281.     /**
  282.      * Move the internal sybase result pointer to the next available result
  283.      *
  284.      * @param valid sybase result resource
  285.      *
  286.      * @access public
  287.      *
  288.      * @return true if a result is available otherwise return false
  289.      */
  290.     function nextResult($result)
  291.     {
  292.         return false;
  293.     }
  294.  
  295.     // }}}
  296.     // {{{ fetchInto()
  297.  
  298.     /**
  299.      * Places a row from the result set into the given array
  300.      *
  301.      * Formating of the array and the data therein are configurable.
  302.      * See DB_result::fetchInto() for more information.
  303.      *
  304.      * This method is not meant to be called directly.  Use
  305.      * DB_result::fetchInto() instead.  It can't be declared "protected"
  306.      * because DB_result is a separate object.
  307.      *
  308.      * @param resource $result    the query result resource
  309.      * @param array    $arr       the referenced array to put the data in
  310.      * @param int      $fetchmode how the resulting array should be indexed
  311.      * @param int      $rownum    the row number to fetch (0 = first row)
  312.      *
  313.      * @return mixed  DB_OK on success, NULL when the end of a result set is
  314.      *                  reached or on failure
  315.      *
  316.      * @see DB_result::fetchInto()
  317.      */
  318.     function fetchInto($result&$arr$fetchmode$rownum = null)
  319.     {
  320.         if ($rownum !== null{
  321.             if (!@sybase_data_seek($result$rownum)) {
  322.                 return null;
  323.             }
  324.         }
  325.         if ($fetchmode DB_FETCHMODE_ASSOC{
  326.             if (function_exists('sybase_fetch_assoc')) {
  327.                 $arr @sybase_fetch_assoc($result);
  328.             else {
  329.                 if ($arr @sybase_fetch_array($result)) {
  330.                     foreach ($arr as $key => $value{
  331.                         if (is_int($key)) {
  332.                             unset($arr[$key]);
  333.                         }
  334.                     }
  335.                 }
  336.             }
  337.             if ($this->options['portability'DB_PORTABILITY_LOWERCASE && $arr{
  338.                 $arr array_change_key_case($arrCASE_LOWER);
  339.             }
  340.         else {
  341.             $arr @sybase_fetch_row($result);
  342.         }
  343.         if (!$arr{
  344.             return null;
  345.         }
  346.         if ($this->options['portability'DB_PORTABILITY_RTRIM{
  347.             $this->_rtrimArrayValues($arr);
  348.         }
  349.         if ($this->options['portability'DB_PORTABILITY_NULL_TO_EMPTY{
  350.             $this->_convertNullArrayValuesToEmpty($arr);
  351.         }
  352.         return DB_OK;
  353.     }
  354.  
  355.     // }}}
  356.     // {{{ freeResult()
  357.  
  358.     /**
  359.      * Deletes the result set and frees the memory occupied by the result set
  360.      *
  361.      * This method is not meant to be called directly.  Use
  362.      * DB_result::free() instead.  It can't be declared "protected"
  363.      * because DB_result is a separate object.
  364.      *
  365.      * @param resource $result  PHP's query result resource
  366.      *
  367.      * @return bool  TRUE on success, FALSE if $result is invalid
  368.      *
  369.      * @see DB_result::free()
  370.      */
  371.     function freeResult($result)
  372.     {
  373.         return is_resource($result? sybase_free_result($result: false;
  374.     }
  375.  
  376.     // }}}
  377.     // {{{ numCols()
  378.  
  379.     /**
  380.      * Gets the number of columns in a result set
  381.      *
  382.      * This method is not meant to be called directly.  Use
  383.      * DB_result::numCols() instead.  It can't be declared "protected"
  384.      * because DB_result is a separate object.
  385.      *
  386.      * @param resource $result  PHP's query result resource
  387.      *
  388.      * @return int  the number of columns.  A DB_Error object on failure.
  389.      *
  390.      * @see DB_result::numCols()
  391.      */
  392.     function numCols($result)
  393.     {
  394.         $cols @sybase_num_fields($result);
  395.         if (!$cols{
  396.             return $this->sybaseRaiseError();
  397.         }
  398.         return $cols;
  399.     }
  400.  
  401.     // }}}
  402.     // {{{ numRows()
  403.  
  404.     /**
  405.      * Gets the number of rows in a result set
  406.      *
  407.      * This method is not meant to be called directly.  Use
  408.      * DB_result::numRows() instead.  It can't be declared "protected"
  409.      * because DB_result is a separate object.
  410.      *
  411.      * @param resource $result  PHP's query result resource
  412.      *
  413.      * @return int  the number of rows.  A DB_Error object on failure.
  414.      *
  415.      * @see DB_result::numRows()
  416.      */
  417.     function numRows($result)
  418.     {
  419.         $rows @sybase_num_rows($result);
  420.         if ($rows === false{
  421.             return $this->sybaseRaiseError();
  422.         }
  423.         return $rows;
  424.     }
  425.  
  426.     // }}}
  427.     // {{{ affectedRows()
  428.  
  429.     /**
  430.      * Determines the number of rows affected by a data maniuplation query
  431.      *
  432.      * 0 is returned for queries that don't manipulate data.
  433.      *
  434.      * @return int  the number of rows.  A DB_Error object on failure.
  435.      */
  436.     function affectedRows()
  437.     {
  438.         if ($this->_last_query_manip{
  439.             $result @sybase_affected_rows($this->connection);
  440.         else {
  441.             $result = 0;
  442.         }
  443.         return $result;
  444.      }
  445.  
  446.     // }}}
  447.     // {{{ nextId()
  448.  
  449.     /**
  450.      * Returns the next free id in a sequence
  451.      *
  452.      * @param string  $seq_name  name of the sequence
  453.      * @param boolean $ondemand  when true, the seqence is automatically
  454.      *                             created if it does not exist
  455.      *
  456.      * @return int  the next id number in the sequence.
  457.      *                A DB_Error object on failure.
  458.      *
  459.      * @see DB_common::nextID(), DB_common::getSequenceName(),
  460.      *       DB_sybase::createSequence(), DB_sybase::dropSequence()
  461.      */
  462.     function nextId($seq_name$ondemand = true)
  463.     {
  464.         $seqname $this->getSequenceName($seq_name);
  465.         if ($this->_db && !@sybase_select_db($this->_db$this->connection)) {
  466.             return $this->sybaseRaiseError(DB_ERROR_NODBSELECTED);
  467.         }
  468.         $repeat = 0;
  469.         do {
  470.             $this->pushErrorHandling(PEAR_ERROR_RETURN);
  471.             $result $this->query("INSERT INTO $seqname (vapor) VALUES (0)");
  472.             $this->popErrorHandling();
  473.             if ($ondemand && DB::isError($result&&
  474.                 ($result->getCode(== DB_ERROR || $result->getCode(== DB_ERROR_NOSUCHTABLE))
  475.             {
  476.                 $repeat = 1;
  477.                 $result $this->createSequence($seq_name);
  478.                 if (DB::isError($result)) {
  479.                     return $this->raiseError($result);
  480.                 }
  481.             elseif (!DB::isError($result)) {
  482.                 $result $this->query("SELECT @@IDENTITY FROM $seqname");
  483.                 $repeat = 0;
  484.             else {
  485.                 $repeat = false;
  486.             }
  487.         while ($repeat);
  488.         if (DB::isError($result)) {
  489.             return $this->raiseError($result);
  490.         }
  491.         $result $result->fetchRow(DB_FETCHMODE_ORDERED);
  492.         return $result[0];
  493.     }
  494.  
  495.     /**
  496.      * Creates a new sequence
  497.      *
  498.      * @param string $seq_name  name of the new sequence
  499.      *
  500.      * @return int  DB_OK on success.  A DB_Error object on failure.
  501.      *
  502.      * @see DB_common::createSequence(), DB_common::getSequenceName(),
  503.      *       DB_sybase::nextID(), DB_sybase::dropSequence()
  504.      */
  505.     function createSequence($seq_name)
  506.     {
  507.         return $this->query('CREATE TABLE '
  508.                             . $this->getSequenceName($seq_name)
  509.                             . ' (id numeric(10, 0) IDENTITY NOT NULL,'
  510.                             . ' vapor int NULL)');
  511.     }
  512.  
  513.     // }}}
  514.     // {{{ dropSequence()
  515.  
  516.     /**
  517.      * Deletes a sequence
  518.      *
  519.      * @param string $seq_name  name of the sequence to be deleted
  520.      *
  521.      * @return int  DB_OK on success.  A DB_Error object on failure.
  522.      *
  523.      * @see DB_common::dropSequence(), DB_common::getSequenceName(),
  524.      *       DB_sybase::nextID(), DB_sybase::createSequence()
  525.      */
  526.     function dropSequence($seq_name)
  527.     {
  528.         return $this->query('DROP TABLE ' $this->getSequenceName($seq_name));
  529.     }
  530.  
  531.     // }}}
  532.     // {{{ quoteFloat()
  533.  
  534.     /**
  535.      * Formats a float value for use within a query in a locale-independent
  536.      * manner.
  537.      *
  538.      * @param float the float value to be quoted.
  539.      * @return string the quoted string.
  540.      * @see DB_common::quoteSmart()
  541.      * @since Method available since release 1.7.8.
  542.      */
  543.     function quoteFloat($float{
  544.         return $this->escapeSimple(str_replace(',''.'strval(floatval($float))));
  545.     }
  546.      
  547.     // }}}
  548.     // {{{ autoCommit()
  549.  
  550.     /**
  551.      * Enables or disables automatic commits
  552.      *
  553.      * @param bool $onoff  true turns it on, false turns it off
  554.      *
  555.      * @return int  DB_OK on success.  A DB_Error object if the driver
  556.      *                doesn't support auto-committing transactions.
  557.      */
  558.     function autoCommit($onoff = false)
  559.     {
  560.         // XXX if $this->transaction_opcount > 0, we should probably
  561.         // issue a warning here.
  562.         $this->autocommit $onoff ? true : false;
  563.         return DB_OK;
  564.     }
  565.  
  566.     // }}}
  567.     // {{{ commit()
  568.  
  569.     /**
  570.      * Commits the current transaction
  571.      *
  572.      * @return int  DB_OK on success.  A DB_Error object on failure.
  573.      */
  574.     function commit()
  575.     {
  576.         if ($this->transaction_opcount > 0{
  577.             if ($this->_db && !@sybase_select_db($this->_db$this->connection)) {
  578.                 return $this->sybaseRaiseError(DB_ERROR_NODBSELECTED);
  579.             }
  580.             $result @sybase_query('COMMIT'$this->connection);
  581.             $this->transaction_opcount = 0;
  582.             if (!$result{
  583.                 return $this->sybaseRaiseError();
  584.             }
  585.         }
  586.         return DB_OK;
  587.     }
  588.  
  589.     // }}}
  590.     // {{{ rollback()
  591.  
  592.     /**
  593.      * Reverts the current transaction
  594.      *
  595.      * @return int  DB_OK on success.  A DB_Error object on failure.
  596.      */
  597.     function rollback()
  598.     {
  599.         if ($this->transaction_opcount > 0{
  600.             if ($this->_db && !@sybase_select_db($this->_db$this->connection)) {
  601.                 return $this->sybaseRaiseError(DB_ERROR_NODBSELECTED);
  602.             }
  603.             $result @sybase_query('ROLLBACK'$this->connection);
  604.             $this->transaction_opcount = 0;
  605.             if (!$result{
  606.                 return $this->sybaseRaiseError();
  607.             }
  608.         }
  609.         return DB_OK;
  610.     }
  611.  
  612.     // }}}
  613.     // {{{ sybaseRaiseError()
  614.  
  615.     /**
  616.      * Produces a DB_Error object regarding the current problem
  617.      *
  618.      * @param int $errno  if the error is being manually raised pass a
  619.      *                      DB_ERROR* constant here.  If this isn't passed
  620.      *                      the error information gathered from the DBMS.
  621.      *
  622.      * @return object  the DB_Error object
  623.      *
  624.      * @see DB_common::raiseError(),
  625.      *       DB_sybase::errorNative(), DB_sybase::errorCode()
  626.      */
  627.     function sybaseRaiseError($errno = null)
  628.     {
  629.         $native $this->errorNative();
  630.         if ($errno === null{
  631.             $errno $this->errorCode($native);
  632.         }
  633.         return $this->raiseError($errnonullnullnull$native);
  634.     }
  635.  
  636.     // }}}
  637.     // {{{ errorNative()
  638.  
  639.     /**
  640.      * Gets the DBMS' native error message produced by the last query
  641.      *
  642.      * @return string  the DBMS' error message
  643.      */
  644.     function errorNative()
  645.     {
  646.         return @sybase_get_last_message();
  647.     }
  648.  
  649.     // }}}
  650.     // {{{ errorCode()
  651.  
  652.     /**
  653.      * Determines PEAR::DB error code from the database's text error message.
  654.      *
  655.      * @param&nbs