3 V4.94 23 Jan 2007 (c) 2000-2007 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 Set tabs to 4 for best viewing.
9 Latest version is available at http://adodb.sourceforge.net
11 DB2 data driver. Requires ODBC.
17 thanks a lot for your help. Today we discovered what
20 After "playing" a little bit with the php-scripts that try
21 to connect to the IBM DB2, we set the optional parameter
22 Cursortype when calling odbc_pconnect(....).
24 And the exciting thing: When we set the cursor type
25 to SQL_CUR_USE_ODBC Cursor Type, then
26 the whole query speed up from 1 till 10 seconds
27 to 0.2 till 0.3 seconds for 100 records. Amazing!!!
29 Therfore, PHP is just almost fast as calling the DB2
30 from Servlets using JDBC (don't take too much care
31 about the speed at whole: the database was on a
32 completely other location, so the whole connection
33 was made over a slow network connection).
35 I hope this helps when other encounter the same
36 problem when trying to connect to DB2 from
43 Mark Newnham has discovered that the SQL_CUR_USE_ODBC is not supported by
44 IBM's DB2 ODBC driver, so this must be a 3rd party ODBC driver.
46 From the IBM CLI Reference:
48 SQL_ATTR_ODBC_CURSORS (DB2 CLI v5)
49 This connection attribute is defined by ODBC, but is not supported by DB2
50 CLI. Any attempt to set or get this attribute will result in an SQLSTATE of
51 HYC00 (Driver not capable).
53 A 32-bit option specifying how the Driver Manager uses the ODBC cursor
56 So I guess this means the message [above] was related to using a 3rd party
59 Setting SQL_CUR_USE_ODBC
60 ========================
61 To set SQL_CUR_USE_ODBC for drivers that require it, do this:
63 $db = NewADOConnection('odbc_db2');
64 $db->curMode = SQL_CUR_USE_ODBC;
65 $db->Connect($dsn, $userid, $pwd);
72 I have had reports that the $host and $database params have to be reversed in
73 Connect() when using the CLI interface. From Halmai Csongor csongor.halmai#nexum.hu:
75 > The symptom is that if I change the database engine from postgres or any other to DB2 then the following
76 > connection command becomes wrong despite being described this version to be correct in the docs.
78 > $connection_object->Connect( $DATABASE_HOST, $DATABASE_AUTH_USER_NAME, $DATABASE_AUTH_PASSWORD, $DATABASE_NAME )
80 > In case of DB2 I had to swap the first and last arguments in order to connect properly.
85 IF you get a System Error 5 when trying to Connect/Load, it could be a permission problem. Give the user connecting
86 to DB2 full rights to the DB2 SQLLIB directory, and place the user in the DBUSERS group.
89 // security - hide paths
90 if (!defined('ADODB_DIR')) die();
92 if (!defined('_ADODB_ODBC_LAYER')) {
93 include(ADODB_DIR
."/drivers/adodb-odbc.inc.php");
95 if (!defined('ADODB_ODBC_DB2')){
96 define('ADODB_ODBC_DB2',1);
98 class ADODB_ODBC_DB2
extends ADODB_odbc
{
99 var $databaseType = "db2";
100 var $concat_operator = '||';
101 var $sysTime = 'CURRENT TIME';
102 var $sysDate = 'CURRENT DATE';
103 var $sysTimeStamp = 'CURRENT TIMESTAMP';
104 // The complete string representation of a timestamp has the form
105 // yyyy-mm-dd-hh.mm.ss.nnnnnn.
106 var $fmtTimeStamp = "'Y-m-d-H.i.s'";
107 var $ansiOuter = true;
108 var $identitySQL = 'values IDENTITY_VAL_LOCAL()';
109 var $_bindInputArray = true;
110 var $hasInsertID = true;
111 var $rsPrefix = 'ADORecordset_odbc_';
115 if (strncmp(PHP_OS
,'WIN',3) === 0) $this->curmode
= SQL_CUR_USE_ODBC
;
119 function IfNull( $field, $ifNull )
121 return " COALESCE($field, $ifNull) "; // if DB2 UDB
124 function ServerInfo()
126 //odbc_setoption($this->_connectionID,1,101 /*SQL_ATTR_ACCESS_MODE*/, 1 /*SQL_MODE_READ_ONLY*/);
127 $vers = $this->GetOne('select versionnumber from sysibm.sysversions');
128 //odbc_setoption($this->_connectionID,1,101, 0 /*SQL_MODE_READ_WRITE*/);
129 return array('description'=>'DB2 ODBC driver', 'version'=>$vers);
134 return $this->GetOne($this->identitySQL
);
137 function RowLock($tables,$where,$flds='1 as ignore')
139 if ($this->_autocommit
) $this->BeginTrans();
140 return $this->GetOne("select $flds from $tables where $where for update");
143 function &MetaTables($ttype=false,$showSchema=false, $qtable="%", $qschema="%")
145 global $ADODB_FETCH_MODE;
147 $savem = $ADODB_FETCH_MODE;
148 $ADODB_FETCH_MODE = ADODB_FETCH_NUM
;
149 $qid = odbc_tables($this->_connectionID
, "", $qschema, $qtable, "");
151 $rs = new ADORecordSet_odbc($qid);
153 $ADODB_FETCH_MODE = $savem;
158 $rs->_has_stupid_odbc_fetch_api_change
= $this->_has_stupid_odbc_fetch_api_change
;
160 $arr =& $rs->GetArray();
167 $isview = strncmp($ttype,'V',1) === 0;
169 for ($i=0; $i < sizeof($arr); $i++
) {
171 if (!$arr[$i][2]) continue;
172 if (strncmp($arr[$i][1],'SYS',3) === 0) continue;
176 if ($showSchema) $arr[$i][2] = $arr[$i][1].'.'.$arr[$i][2];
180 if (strncmp($type,'V',1) === 0) $arr2[] = $arr[$i][2];
181 } else if (strncmp($type,'T',1) === 0) $arr2[] = $arr[$i][2];
182 } else if (strncmp($type,'S',1) !== 0) $arr2[] = $arr[$i][2];
187 function &MetaIndexes ($table, $primary = FALSE, $owner=false)
189 // save old fetch mode
190 global $ADODB_FETCH_MODE;
191 $save = $ADODB_FETCH_MODE;
192 $ADODB_FETCH_MODE = ADODB_FETCH_NUM
;
193 if ($this->fetchMode
!== FALSE) {
194 $savem = $this->SetFetchMode(FALSE);
198 $table = strtoupper($table);
199 $SQL="SELECT NAME, UNIQUERULE, COLNAMES FROM SYSIBM.SYSINDEXES WHERE TBNAME='$table'";
201 $SQL.= " AND UNIQUERULE='P'";
202 $rs = $this->Execute($SQL);
203 if (!is_object($rs)) {
205 $this->SetFetchMode($savem);
206 $ADODB_FETCH_MODE = $save;
210 // parse index data into array
211 while ($row = $rs->FetchRow()) {
212 $indexes[$row[0]] = array(
213 'unique' => ($row[1] == 'U' ||
$row[1] == 'P'),
216 $cols = ltrim($row[2],'+');
217 $indexes[$row[0]]['columns'] = explode('+', $cols);
220 $this->SetFetchMode($savem);
221 $ADODB_FETCH_MODE = $save;
226 // Format date column in sql string given an input format that understands Y M D
227 function SQLDate($fmt, $col=false)
229 // use right() and replace() ?
230 if (!$col) $col = $this->sysDate
;
234 for ($i=0; $i < $len; $i++
) {
240 $s .= "char(year($col))";
243 $s .= "substr(monthname($col),1,3)";
246 $s .= "right(digits(month($col)),2)";
250 $s .= "right(digits(day($col)),2)";
254 if ($col != $this->sysDate
) $s .= "right(digits(hour($col)),2)";
259 if ($col != $this->sysDate
)
260 $s .= "right(digits(minute($col)),2)";
265 if ($col != $this->sysDate
)
266 $s .= "right(digits(second($col)),2)";
272 $ch = substr($fmt,$i,1);
274 $s .= $this->qstr($ch);
281 function &SelectLimit($sql,$nrows=-1,$offset=-1,$inputArr=false)
283 $nrows = (integer) $nrows;
285 // could also use " OPTIMIZE FOR $nrows ROWS "
286 if ($nrows >= 0) $sql .= " FETCH FIRST $nrows ROWS ONLY ";
287 $rs =& $this->Execute($sql,$inputArr);
289 if ($offset > 0 && $nrows < 0);
292 $sql .= " FETCH FIRST $nrows ROWS ONLY ";
294 $rs =& ADOConnection
::SelectLimit($sql,-1,$offset,$inputArr);
303 class ADORecordSet_odbc_db2
extends ADORecordSet_odbc
{
305 var $databaseType = "db2";
307 function ADORecordSet_db2($id,$mode=false)
309 $this->ADORecordSet_odbc($id,$mode);
312 function MetaType($t,$len=-1,$fieldobj=false)
316 $t = $fieldobj->type
;
317 $len = $fieldobj->max_length
;
320 switch (strtoupper($t)) {
325 if ($len <= $this->blobSize
) return 'C';
330 case 'DBCLOB': // double-byte