home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 March / PCWorld_2003-03_cd.bin / Software / Vyzkuste / phptriad / phptriad2-2-1.exe / php / pear / DB / ibase.php < prev    next >
Encoding:
PHP Script  |  2001-11-13  |  7.1 KB  |  252 lines

  1. <?php
  2. //
  3. // +----------------------------------------------------------------------+
  4. // | PHP version 4.0                                                      |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 1997-2001 The PHP Group                                |
  7. // +----------------------------------------------------------------------+
  8. // | This source file is subject to version 2.02 of the PHP license,      |
  9. // | that is bundled with this package in the file LICENSE, and is        |
  10. // | available at through the world-wide-web at                           |
  11. // | http://www.php.net/license/2_02.txt.                                 |
  12. // | If you did not receive a copy of the PHP license and are unable to   |
  13. // | obtain it through the world-wide-web, please send a note to          |
  14. // | license@php.net so we can mail you a copy immediately.               |
  15. // +----------------------------------------------------------------------+
  16. // | Authors: Sterling Hughes <sterling@php.net>                          |
  17. // +----------------------------------------------------------------------+
  18. //
  19. // $Id: ibase.php,v 1.20.2.2 2001/11/13 01:26:42 ssb Exp $
  20. //
  21. // Database independent query interface definition for PHP's Interbase
  22. // extension.
  23. //
  24.  
  25. require_once 'DB/common.php';
  26.  
  27. class DB_ibase extends DB_common
  28. {
  29.     var $connection;
  30.     var $phptype, $dbsyntax;
  31.     var $autocommit = 1;
  32.     var $manip_query = array();
  33.  
  34.     function DB_ibase()
  35.     {
  36.         $this->DB_common();
  37.         $this->phptype = 'ibase';
  38.         $this->dbsyntax = 'ibase';
  39.         $this->features = array(
  40.             'prepare' => true,
  41.             'pconnect' => true,
  42.             'transactions' => true,
  43.             'limit' => false
  44.         );
  45.     }
  46.  
  47.     function connect($dsninfo, $persistent = false)
  48.     {
  49.         if (!DB::assertExtension('interbase'))
  50.             return $this->raiseError(DB_ERROR_EXTENSION_NOT_FOUND);
  51.  
  52.         $this->dsn = $dsninfo;
  53.         $user = $dsninfo['username'];
  54.         $pw = $dsninfo['password'];
  55.         $dbhost = $dsninfo['hostspec'] ?
  56.                   ($dsninfo['hostspec'] . ':/' . $dsninfo['database']) :
  57.                   $dsninfo['database'];
  58.  
  59.         $connect_function = $persistent ? 'ibase_pconnect' : 'ibase_connect';
  60.  
  61.         if ($dbhost && $user && $pw) {
  62.             $conn = $connect_function($dbhost, $user, $pw);
  63.         } elseif ($dbhost && $user) {
  64.             $conn = $connect_function($dbhost, $user);
  65.         } elseif ($dbhost) {
  66.             $conn = $connect_function($dbhost);
  67.         } else {
  68.             return $this->raiseError("no host, user or password");
  69.         }
  70.         if (!$conn) {
  71.             return $this->raiseError(DB_ERROR_CONNECT_FAILED);
  72.         }
  73.         $this->connection = $conn;
  74.         return DB_OK;
  75.     }
  76.  
  77.     function disconnect()
  78.     {
  79.         $ret = @ibase_close($this->connection);
  80.         $this->connection = null;
  81.         return $ret;
  82.     }
  83.  
  84.     function simpleQuery($query)
  85.     {
  86.         $ismanip = DB::isManip($query);
  87.         $this->last_query = $query;
  88.         $query = $this->modifyQuery($query);
  89.         $result = @ibase_query($this->connection, $query);
  90.         if (!$result) {
  91.             return $this->raiseError();
  92.         }
  93.         if ($this->autocommit && $ismanip) {
  94.             ibase_commit($this->connection);
  95.         }
  96.         // Determine which queries that should return data, and which
  97.         // should return an error code only.
  98.         return DB::isManip($query) ? DB_OK : $result;
  99.     }
  100.  
  101.     // {{{ nextResult()
  102.  
  103.     /**
  104.      * Move the internal ibase result pointer to the next available result
  105.      *
  106.      * @param a valid fbsql result resource
  107.      *
  108.      * @access public
  109.      *
  110.      * @return true if a result is available otherwise return false
  111.      */
  112.     function nextResult($result)
  113.     {
  114.         return false;
  115.     }
  116.  
  117.     // }}}
  118.  
  119.     function &fetchRow($result, $fetchmode = DB_FETCHMODE_DEFAULT)
  120.     {
  121.         if ($fetchmode == DB_FETCHMODE_DEFAULT) {
  122.             $fetchmode = $this->fetchmode;
  123.         }
  124.         if ($fetchmode & DB_FETCHMODE_ASSOC) {
  125.             $row = (array)ibase_fetch_object($result);
  126.         } else {
  127.             $row = ibase_fetch_row($result);
  128.         }
  129.         if (!$row) {
  130.             if ($errmsg = ibase_errmsg()) {
  131.                 return $this->raiseError($errmsg);
  132.             } else {
  133.                 return null;
  134.             }
  135.         }
  136.         return $row;
  137.     }
  138.  
  139.     function fetchInto($result, &$ar, $fetchmode = DB_FETCHMODE_DEFAULT, $rownum = null)
  140.     {
  141.         if ($rownum !== NULL) {
  142.             return $this->raiseError(DB_ERROR_NOT_CAPABLE);
  143.         }
  144.         if ($fetchmode == DB_FETCHMODE_DEFAULT) {
  145.             $fetchmode = $this->fetchmode;
  146.         }
  147.         if ($fetchmode & DB_FETCHMODE_ASSOC) {
  148.             $ar = (array)ibase_fetch_object($result);
  149.         } else {
  150.             $ar = ibase_fetch_row($result);
  151.         }
  152.         if (!$ar) {
  153.             if ($errmsg = ibase_errmsg()) {
  154.                 return $this->raiseError($errmsg);
  155.             } else {
  156.                 return null;
  157.             }
  158.         }
  159.         return DB_OK;
  160.     }
  161.  
  162.     function freeResult()
  163.     {
  164.         return $this->raiseError(DB_ERROR_NOT_CAPABLE);
  165.     }
  166.  
  167.     function freeQuery($query)
  168.     {
  169.         ibase_free_query($query);
  170.         return true;
  171.     }
  172.  
  173.     function numCols($result)
  174.     {
  175.         $cols = ibase_num_fields($result);
  176.         if (!$cols) {
  177.             return $this->raiseError();
  178.         }
  179.         return $cols;
  180.     }
  181.  
  182.     function prepare($query)
  183.     {
  184.         $this->last_query = $query;
  185.         $query = $this->modifyQuery($query);
  186.         $stmt = ibase_prepare($query);
  187.         $this->manip_query[(int)$stmt] = DB::isManip($query);
  188.         return $stmt;
  189.     }
  190.  
  191.     function execute($stmt, $data = false)
  192.     {
  193.         $result = ibase_execute($stmt, $data);
  194.         if (!$result) {
  195.             return $this->raiseError();
  196.         }
  197.         if ($this->autocommit) {
  198.             ibase_commit($this->connection);
  199.         }
  200.         return DB::isManip($this->manip_query[(int)$stmt]) ? DB_OK : new DB_result($this, $result);
  201.     }
  202.  
  203.     function autoCommit($onoff = false)
  204.     {
  205.         $this->autocommit = $onoff ? 1 : 0;
  206.         return DB_OK;
  207.     }
  208.  
  209.     function commit()
  210.     {
  211.         return ibase_commit($this->connection);
  212.     }
  213.  
  214.     function rollback($trans_number)
  215.     {
  216.         return ibase_rollback($this->connection, $trans_number);
  217.     }
  218.  
  219.     function transactionInit($trans_args = 0)
  220.     {
  221.         return $trans_args ? ibase_trans($trans_args, $this->connection) : ibase_trans();
  222.     }
  223.  
  224.     // {{{ getSpecialQuery()
  225.  
  226.     /**
  227.     * Returns the query needed to get some backend info
  228.     * @param string $type What kind of info you want to retrieve
  229.     * @return string The SQL query string
  230.     */
  231.     function getSpecialQuery($type)
  232.     {
  233.         switch ($type) {
  234.             case 'tables':
  235.             default:
  236.                 return null;
  237.         }
  238.         return $sql;
  239.     }
  240.  
  241.     // }}}
  242. }
  243.  
  244.  
  245. /*
  246.  * Local variables:
  247.  * tab-width: 4
  248.  * c-basic-offset: 4
  249.  * End:
  250.  */
  251.  
  252. ?>