Zikula 1.0.1
[ class tree: Zikula 1.0.1 ] [ index: Zikula 1.0.1 ] [ all elements ]

Source for file adodb-sqlitepo.inc.php

Documentation is available at adodb-sqlitepo.inc.php

  1. <?php
  2. /*
  3. V4.97 22 Jan 2008  (c) 2000-2008 John Lim (jlim#natsoft.com.my). All rights reserved.
  4.   Released under both BSD license and Lesser GPL library license.
  5.   Whenever there is any discrepancy between the two licenses,
  6.   the BSD license will take precedence.
  7.  
  8.   Portable version of sqlite driver, to make it more similar to other database drivers.
  9.   The main differences are
  10.  
  11.    1. When selecting (joining) multiple tables, in assoc mode the table
  12.          names are included in the assoc keys in the "sqlite" driver.
  13.       
  14.       In "sqlitepo" driver, the table names are stripped from the returned column names. 
  15.       When this results in a conflict,  the first field get preference.
  16.  
  17.     Contributed by Herman Kuiper  herman#ozuzo.net  
  18. */
  19.  
  20. if (!defined('ADODB_DIR')) die();
  21.  
  22. include_once(ADODB_DIR.'/drivers/adodb-sqlite.inc.php');
  23.  
  24. class ADODB_sqlitepo extends ADODB_sqlite {
  25.    var $databaseType = 'sqlitepo';
  26.  
  27.    function ADODB_sqlitepo()
  28.    {
  29.       $this->ADODB_sqlite();
  30.    }
  31. }
  32.  
  33. /*--------------------------------------------------------------------------------------
  34.        Class Name: Recordset
  35. --------------------------------------------------------------------------------------*/
  36.  
  37.  
  38.    var $databaseType = 'sqlitepo';
  39.  
  40.    function ADORecordset_sqlitepo($queryID,$mode=false)
  41.    {
  42.       $this->ADORecordset_sqlite($queryID,$mode);
  43.    }
  44.    
  45.    // Modified to strip table names from returned fields
  46.    function _fetch($ignore_fields=false)
  47.    {
  48.       $this->fields = array();
  49.       $fields @sqlite_fetch_array($this->_queryID,$this->fetchMode);
  50.       if(is_array($fields))
  51.          foreach($fields as $n => $v)
  52.          {
  53.             if(($p strpos($n".")) !== false)
  54.                $n substr($n$p+1);
  55.             $this->fields[$n$v;
  56.          }
  57.  
  58.       return !empty($this->fields);
  59.    }
  60. }
  61. ?>

Documentation generated on Fri, 18 Jul 2008 21:42:02 +0200 by phpDocumentor 1.4.1