X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/lib/adodb/drivers
home
/
cbholdings
/
pasukulu
/
lib
/
adodb
/
drivers
/
📁
..
📄
adodb-access.inc.php
(2.15 KB)
📄
adodb-ado.inc.php
(16.24 KB)
📄
adodb-ado5.inc.php
(17.33 KB)
📄
adodb-ado_access.inc.php
(1.48 KB)
📄
adodb-ado_mssql.inc.php
(4.02 KB)
📄
adodb-ads.inc.php
(19.39 KB)
📄
adodb-borland_ibase.inc.php
(2.43 KB)
📄
adodb-csv.inc.php
(5.09 KB)
📄
adodb-db2.inc.php
(44.21 KB)
📄
adodb-db2oci.inc.php
(4.31 KB)
📄
adodb-db2ora.inc.php
(2.23 KB)
📄
adodb-fbsql.inc.php
(6.84 KB)
📄
adodb-firebird.inc.php
(33.29 KB)
📄
adodb-ibase.inc.php
(22.51 KB)
📄
adodb-informix.inc.php
(1.21 KB)
📄
adodb-informix72.inc.php
(14.81 KB)
📄
adodb-ldap.inc.php
(10.93 KB)
📄
adodb-mssql.inc.php
(30.57 KB)
📄
adodb-mssql_n.inc.php
(7.75 KB)
📄
adodb-mssqlnative.inc.php
(35.32 KB)
📄
adodb-mssqlpo.inc.php
(1.41 KB)
📄
adodb-mysqli.inc.php
(52.6 KB)
📄
adodb-netezza.inc.php
(5.12 KB)
📄
adodb-oci8.inc.php
(47.65 KB)
📄
adodb-oci805.inc.php
(1.79 KB)
📄
adodb-oci8po.inc.php
(7.12 KB)
📄
adodb-oci8quercus.inc.php
(2.3 KB)
📄
adodb-odbc.inc.php
(18.56 KB)
📄
adodb-odbc_db2.inc.php
(6.87 KB)
📄
adodb-odbc_mssql.inc.php
(12.34 KB)
📄
adodb-odbc_mssql2012.inc.php
(1.08 KB)
📄
adodb-odbc_oracle.inc.php
(3.34 KB)
📄
adodb-odbtp.inc.php
(23.25 KB)
📄
adodb-odbtp_unicode.inc.php
(1.42 KB)
📄
adodb-oracle.inc.php
(9.39 KB)
📄
adodb-pdo.inc.php
(20.93 KB)
📄
adodb-pdo_dblib.inc.php
(5.8 KB)
📄
adodb-pdo_firebird.inc.php
(10.33 KB)
📄
adodb-pdo_mssql.inc.php
(1.84 KB)
📄
adodb-pdo_mysql.inc.php
(9.75 KB)
📄
adodb-pdo_oci.inc.php
(3.41 KB)
📄
adodb-pdo_pgsql.inc.php
(10.2 KB)
📄
adodb-pdo_sqlite.inc.php
(6.33 KB)
📄
adodb-pdo_sqlsrv.inc.php
(4.42 KB)
📄
adodb-postgres.inc.php
(1008 B)
📄
adodb-postgres64.inc.php
(31.63 KB)
📄
adodb-postgres7.inc.php
(9.27 KB)
📄
adodb-postgres8.inc.php
(2.1 KB)
📄
adodb-postgres9.inc.php
(1.13 KB)
📄
adodb-proxy.inc.php
(1.12 KB)
📄
adodb-sapdb.inc.php
(5 KB)
📄
adodb-sqlanywhere.inc.php
(3.43 KB)
📄
adodb-sqlite.inc.php
(11.83 KB)
📄
adodb-sqlite3.inc.php
(18.66 KB)
📄
adodb-sqlitepo.inc.php
(2.05 KB)
📄
adodb-sybase.inc.php
(12.19 KB)
📄
adodb-sybase_ase.inc.php
(3.5 KB)
📄
adodb-text.inc.php
(8.14 KB)
📄
adodb-vfp.inc.php
(2.6 KB)
Editing: adodb-pdo_sqlite.inc.php
<?php /** * PDO SQLite driver * * This file is part of ADOdb, a Database Abstraction Layer library for PHP. * * @package ADOdb * @link https://adodb.org Project's web site and documentation * @link https://github.com/ADOdb/ADOdb Source code and issue tracker * * The ADOdb Library is dual-licensed, released under both the BSD 3-Clause * and the GNU Lesser General Public Licence (LGPL) v2.1 or, at your option, * any later version. This means you can use it in proprietary products. * See the LICENSE.md file distributed with this source code for details. * @license BSD-3-Clause * @license LGPL-2.1-or-later * * @copyright 2000-2013 John Lim * @copyright 2014 Damien Regad, Mark Newnham and the ADOdb community * @author Diogo Toscano <diogo@scriptcase.net> * @author Sid Dunayer <sdunayer@interserv.com> */ class ADODB_pdo_sqlite extends ADODB_pdo { var $metaTablesSQL = "SELECT name FROM sqlite_master WHERE type='table'"; var $sysDate = 'current_date'; var $sysTimeStamp = 'current_timestamp'; var $nameQuote = '`'; var $replaceQuote = "''"; var $hasGenID = true; var $_genIDSQL = "UPDATE %s SET id=id+1 WHERE id=%s"; var $_genSeqSQL = "CREATE TABLE %s (id integer)"; var $_genSeqCountSQL = 'SELECT COUNT(*) FROM %s'; var $_genSeq2SQL = 'INSERT INTO %s VALUES(%s)'; var $_dropSeqSQL = 'DROP TABLE %s'; var $concat_operator = '||'; var $pdoDriver = false; var $random='abs(random())'; function _init($parentDriver) { $this->pdoDriver = $parentDriver; $parentDriver->_bindInputArray = true; $parentDriver->hasTransactions = false; // // should be set to false because of PDO SQLite driver not supporting changing autocommit mode $parentDriver->hasInsertID = true; } function ServerInfo() { $parent = $this->pdoDriver; @($ver = array_pop($parent->GetCol("SELECT sqlite_version()"))); @($enc = array_pop($parent->GetCol("PRAGMA encoding"))); $arr['version'] = $ver; $arr['description'] = 'SQLite '; $arr['encoding'] = $enc; return $arr; } function SelectLimit($sql,$nrows=-1,$offset=-1,$inputarr=false,$secs2cache=0) { $nrows = (int) $nrows; $offset = (int) $offset; $parent = $this->pdoDriver; $offsetStr = ($offset >= 0) ? " OFFSET $offset" : ''; $limitStr = ($nrows >= 0) ? " LIMIT $nrows" : ($offset >= 0 ? ' LIMIT 999999999' : ''); if ($secs2cache) $rs = $parent->CacheExecute($secs2cache,$sql."$limitStr$offsetStr",$inputarr); else $rs = $parent->Execute($sql."$limitStr$offsetStr",$inputarr); return $rs; } function GenID($seq='adodbseq',$start=1) { $parent = $this->pdoDriver; // if you have to modify the parameter below, your database is overloaded, // or you need to implement generation of id's yourself! $MAXLOOPS = 100; while (--$MAXLOOPS>=0) { @($num = array_pop($parent->GetCol("SELECT id FROM {$seq}"))); if ($num === false || !is_numeric($num)) { @$parent->Execute(sprintf($this->_genSeqSQL ,$seq)); $start -= 1; $num = '0'; $cnt = $parent->GetOne(sprintf($this->_genSeqCountSQL,$seq)); if (!$cnt) { $ok = $parent->Execute(sprintf($this->_genSeq2SQL,$seq,$start)); } if (!$ok) return false; } $parent->Execute(sprintf($this->_genIDSQL,$seq,$num)); if ($parent->affected_rows() > 0) { $num += 1; $parent->genID = intval($num); return intval($num); } } if ($fn = $parent->raiseErrorFn) { $fn($parent->databaseType,'GENID',-32000,"Unable to generate unique id after $MAXLOOPS attempts",$seq,$num); } return false; } function CreateSequence($seqname='adodbseq',$start=1) { $parent = $this->pdoDriver; $ok = $parent->Execute(sprintf($this->_genSeqSQL,$seqname)); if (!$ok) return false; $start -= 1; return $parent->Execute("insert into $seqname values($start)"); } function SetTransactionMode($transaction_mode) { $parent = $this->pdoDriver; $parent->_transmode = strtoupper($transaction_mode); } function BeginTrans() { $parent = $this->pdoDriver; if ($parent->transOff) return true; $parent->transCnt += 1; $parent->_autocommit = false; return $parent->Execute("BEGIN {$parent->_transmode}"); } function CommitTrans($ok=true) { $parent = $this->pdoDriver; if ($parent->transOff) return true; if (!$ok) return $parent->RollbackTrans(); if ($parent->transCnt) $parent->transCnt -= 1; $parent->_autocommit = true; $ret = $parent->Execute('COMMIT'); return $ret; } function RollbackTrans() { $parent = $this->pdoDriver; if ($parent->transOff) return true; if ($parent->transCnt) $parent->transCnt -= 1; $parent->_autocommit = true; $ret = $parent->Execute('ROLLBACK'); return $ret; } // mark newnham function MetaColumns($tab,$normalize=true) { global $ADODB_FETCH_MODE; $parent = $this->pdoDriver; $false = false; $save = $ADODB_FETCH_MODE; $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC; if ($parent->fetchMode !== false) { $savem = $parent->SetFetchMode(false); } $rs = $parent->Execute("PRAGMA table_info('$tab')"); if (isset($savem)) { $parent->SetFetchMode($savem); } if (!$rs) { $ADODB_FETCH_MODE = $save; return $false; } $arr = array(); while ($r = $rs->FetchRow()) { $type = explode('(', $r['type']); $size = ''; if (sizeof($type) == 2) { $size = trim($type[1], ')'); } $fn = strtoupper($r['name']); $fld = new ADOFieldObject; $fld->name = $r['name']; $fld->type = $type[0]; $fld->max_length = $size; $fld->not_null = $r['notnull']; $fld->primary_key = $r['pk']; $fld->default_value = $r['dflt_value']; $fld->scale = 0; if ($save == ADODB_FETCH_NUM) { $arr[] = $fld; } else { $arr[strtoupper($fld->name)] = $fld; } } $rs->Close(); $ADODB_FETCH_MODE = $save; return $arr; } function MetaTables($ttype=false,$showSchema=false,$mask=false) { $parent = $this->pdoDriver; if ($mask) { $save = $this->metaTablesSQL; $mask = $this->qstr(strtoupper($mask)); $this->metaTablesSQL .= " AND name LIKE $mask"; } $ret = $parent->GetCol($this->metaTablesSQL); if ($mask) { $this->metaTablesSQL = $save; } return $ret; } /** * Returns a driver-specific format for a bind parameter * * @param string $name * @param string $type (ignored in driver) * * @return string */ public function param($name,$type='C') { return sprintf(':%s', $name); } }
Upload File
Create Folder