60cd817de936815c9e2a57a57941797400ef017c
[lhc/web/wiklou.git] / includes / db / DatabaseIbm_db2.php
1 <?php
2 /**
3 * This is the IBM DB2 database abstraction layer.
4 * See maintenance/ibm_db2/README for development notes and other specific information
5 *
6 * @file
7 * @ingroup Database
8 * @author leo.petr+mediawiki@gmail.com
9 */
10
11 /**
12 * This represents a column in a DB2 database
13 * @ingroup Database
14 */
15 class IBM_DB2Field {
16 private $name = '';
17 private $tablename = '';
18 private $type = '';
19 private $nullable = false;
20 private $max_length = 0;
21
22 /**
23 * Builder method for the class
24 * @param $db DatabaseIbm_db2: Database interface
25 * @param $table String: table name
26 * @param $field String: column name
27 * @return IBM_DB2Field
28 */
29 static function fromText($db, $table, $field) {
30 global $wgDBmwschema;
31
32 $q = <<<SQL
33 SELECT
34 lcase(coltype) AS typname,
35 nulls AS attnotnull, length AS attlen
36 FROM sysibm.syscolumns
37 WHERE tbcreator=%s AND tbname=%s AND name=%s;
38 SQL;
39 $res = $db->query(sprintf($q,
40 $db->addQuotes($wgDBmwschema),
41 $db->addQuotes($table),
42 $db->addQuotes($field)));
43 $row = $db->fetchObject($res);
44 if (!$row)
45 return null;
46 $n = new IBM_DB2Field;
47 $n->type = $row->typname;
48 $n->nullable = ($row->attnotnull == 'N');
49 $n->name = $field;
50 $n->tablename = $table;
51 $n->max_length = $row->attlen;
52 return $n;
53 }
54 /**
55 * Get column name
56 * @return string column name
57 */
58 function name() { return $this->name; }
59 /**
60 * Get table name
61 * @return string table name
62 */
63 function tableName() { return $this->tablename; }
64 /**
65 * Get column type
66 * @return string column type
67 */
68 function type() { return $this->type; }
69 /**
70 * Can column be null?
71 * @return bool true or false
72 */
73 function nullable() { return $this->nullable; }
74 /**
75 * How much can you fit in the column per row?
76 * @return int length
77 */
78 function maxLength() { return $this->max_length; }
79 }
80
81 /**
82 * Wrapper around binary large objects
83 * @ingroup Database
84 */
85 class IBM_DB2Blob {
86 private $mData;
87
88 public function __construct($data) {
89 $this->mData = $data;
90 }
91
92 public function getData() {
93 return $this->mData;
94 }
95
96 public function __toString()
97 {
98 return $this->mData;
99 }
100 }
101
102 /**
103 * Primary database interface
104 * @ingroup Database
105 */
106 class DatabaseIbm_db2 extends DatabaseBase {
107 /*
108 * Inherited members
109 protected $mLastQuery = '';
110 protected $mPHPError = false;
111
112 protected $mServer, $mUser, $mPassword, $mConn = null, $mDBname;
113 protected $mOut, $mOpened = false;
114
115 protected $mFailFunction;
116 protected $mTablePrefix;
117 protected $mFlags;
118 protected $mTrxLevel = 0;
119 protected $mErrorCount = 0;
120 protected $mLBInfo = array();
121 protected $mFakeSlaveLag = null, $mFakeMaster = false;
122 *
123 */
124
125 /// Server port for uncataloged connections
126 protected $mPort = null;
127 /// Whether connection is cataloged
128 protected $mCataloged = null;
129 /// Schema for tables, stored procedures, triggers
130 protected $mSchema = null;
131 /// Whether the schema has been applied in this session
132 protected $mSchemaSet = false;
133 /// Result of last query
134 protected $mLastResult = null;
135 /// Number of rows affected by last INSERT/UPDATE/DELETE
136 protected $mAffectedRows = null;
137 /// Number of rows returned by last SELECT
138 protected $mNumRows = null;
139
140 /// Connection config options - see constructor
141 public $mConnOptions = array();
142 /// Statement config options -- see constructor
143 public $mStmtOptions = array();
144
145
146 const CATALOGED = "cataloged";
147 const UNCATALOGED = "uncataloged";
148 const USE_GLOBAL = "get from global";
149
150 const NONE_OPTION = 0x00;
151 const CONN_OPTION = 0x01;
152 const STMT_OPTION = 0x02;
153
154 const REGULAR_MODE = 'regular';
155 const INSTALL_MODE = 'install';
156
157 // Whether this is regular operation or the initial installation
158 protected $mMode = self::REGULAR_MODE;
159
160 /// Last sequence value used for a primary key
161 protected $mInsertId = null;
162
163 /*
164 * These can be safely inherited
165 *
166 * Getter/Setter: (18)
167 * failFunction
168 * bufferResults
169 * ignoreErrors
170 * trxLevel
171 * errorCount
172 * getLBInfo
173 * setLBInfo
174 * lastQuery
175 * isOpen
176 * setFlag
177 * clearFlag
178 * getFlag
179 * getProperty
180 * getDBname
181 * getServer
182 * tableNameCallback
183 * tablePrefix
184 *
185 * Administrative: (8)
186 * debug
187 * installErrorHandler
188 * restoreErrorHandler
189 * connectionErrorHandler
190 * reportConnectionError
191 * sourceFile
192 * sourceStream
193 * replaceVars
194 *
195 * Database: (5)
196 * query
197 * set
198 * selectField
199 * generalizeSQL
200 * update
201 * strreplace
202 * deadlockLoop
203 *
204 * Prepared Statement: 6
205 * prepare
206 * freePrepared
207 * execute
208 * safeQuery
209 * fillPrepared
210 * fillPreparedArg
211 *
212 * Slave/Master: (4)
213 * masterPosWait
214 * getSlavePos
215 * getMasterPos
216 * getLag
217 * setFakeMaster
218 *
219 * Generation: (9)
220 * tableNames
221 * tableNamesN
222 * tableNamesWithUseIndexOrJOIN
223 * escapeLike
224 * delete
225 * insertSelect
226 * timestampOrNull
227 * resultObject
228 * aggregateValue
229 * selectSQLText
230 * selectRow
231 * makeUpdateOptions
232 *
233 * Reflection: (1)
234 * indexExists
235 */
236
237 /*
238 * These have been implemented
239 *
240 * Administrative: 7 / 7
241 * constructor [Done]
242 * open [Done]
243 * openCataloged [Done]
244 * close [Done]
245 * newFromParams [Done]
246 * openUncataloged [Done]
247 * setup_database [Done]
248 *
249 * Getter/Setter: 13 / 13
250 * cascadingDeletes [Done]
251 * cleanupTriggers [Done]
252 * strictIPs [Done]
253 * realTimestamps [Done]
254 * impliciGroupby [Done]
255 * implicitOrderby [Done]
256 * searchableIPs [Done]
257 * functionalIndexes [Done]
258 * getWikiID [Done]
259 * isOpen [Done]
260 * getServerVersion [Done]
261 * getSoftwareLink [Done]
262 * getSearchEngine [Done]
263 *
264 * Database driver wrapper: 23 / 23
265 * lastError [Done]
266 * lastErrno [Done]
267 * doQuery [Done]
268 * tableExists [Done]
269 * fetchObject [Done]
270 * fetchRow [Done]
271 * freeResult [Done]
272 * numRows [Done]
273 * numFields [Done]
274 * fieldName [Done]
275 * insertId [Done]
276 * dataSeek [Done]
277 * affectedRows [Done]
278 * selectDB [Done]
279 * strencode [Done]
280 * conditional [Done]
281 * wasDeadlock [Done]
282 * ping [Done]
283 * getStatus [Done]
284 * setTimeout [Done]
285 * lock [Done]
286 * unlock [Done]
287 * insert [Done]
288 * select [Done]
289 *
290 * Slave/master: 2 / 2
291 * setFakeSlaveLag [Done] - Where??
292 *
293 * Reflection: 5 / 5
294 * indexInfo [Done]
295 * fieldInfo [Done]
296 * fieldType [Done]
297 * indexUnique [Done]
298 * textFieldSize [Done]
299 *
300 * Generation: 16 / 16
301 * tableName [Done]
302 * addQuotes [Done]
303 * makeList [Done]
304 * makeSelectOptions [Done]
305 * estimateRowCount [Done]
306 * nextSequenceValue [Done]
307 * useIndexClause [Done]
308 * replace [Done]
309 * deleteJoin [Done]
310 * lowPriorityOption [Done]
311 * limitResult [Done]
312 * limitResultForUpdate [Done]
313 * timestamp [Done]
314 * encodeBlob [Done]
315 * decodeBlob [Done]
316 * buildConcat [Done]
317 */
318
319 ######################################
320 # Getters and Setters
321 ######################################
322
323 /**
324 * Returns true if this database supports (and uses) cascading deletes
325 */
326 function cascadingDeletes() {
327 return true;
328 }
329
330 /**
331 * Returns true if this database supports (and uses) triggers (e.g. on the page table)
332 */
333 function cleanupTriggers() {
334 return true;
335 }
336
337 /**
338 * Returns true if this database is strict about what can be put into an IP field.
339 * Specifically, it uses a NULL value instead of an empty string.
340 */
341 function strictIPs() {
342 return true;
343 }
344
345 /**
346 * Returns true if this database uses timestamps rather than integers
347 */
348 function realTimestamps() {
349 return true;
350 }
351
352 /**
353 * Returns true if this database does an implicit sort when doing GROUP BY
354 */
355 function implicitGroupby() {
356 return false;
357 }
358
359 /**
360 * Returns true if this database does an implicit order by when the column has an index
361 * For example: SELECT page_title FROM page LIMIT 1
362 */
363 function implicitOrderby() {
364 return false;
365 }
366
367 /**
368 * Returns true if this database can do a native search on IP columns
369 * e.g. this works as expected: .. WHERE rc_ip = '127.42.12.102/32';
370 */
371 function searchableIPs() {
372 return true;
373 }
374
375 /**
376 * Returns true if this database can use functional indexes
377 */
378 function functionalIndexes() {
379 return true;
380 }
381
382 /**
383 * Returns a unique string representing the wiki on the server
384 */
385 function getWikiID() {
386 if( $this->mSchema ) {
387 return "{$this->mDBname}-{$this->mSchema}";
388 } else {
389 return $this->mDBname;
390 }
391 }
392
393 function getType() {
394 return 'ibm_db2';
395 }
396
397 ######################################
398 # Setup
399 ######################################
400
401
402 /**
403 *
404 * @param $server String: hostname of database server
405 * @param $user String: username
406 * @param $password String: password
407 * @param $dbName String: database name on the server
408 * @param $failFunction Callback (optional)
409 * @param $flags Integer: database behaviour flags (optional, unused)
410 * @param $schema String
411 */
412 public function DatabaseIbm_db2($server = false, $user = false, $password = false,
413 $dbName = false, $failFunction = false, $flags = 0,
414 $schema = self::USE_GLOBAL )
415 {
416
417 global $wgOut, $wgDBmwschema;
418 # Can't get a reference if it hasn't been set yet
419 if ( !isset( $wgOut ) ) {
420 $wgOut = null;
421 }
422 $this->mOut =& $wgOut;
423 $this->mFailFunction = $failFunction;
424 $this->mFlags = DBO_TRX | $flags;
425
426 if ( $schema == self::USE_GLOBAL ) {
427 $this->mSchema = $wgDBmwschema;
428 }
429 else {
430 $this->mSchema = $schema;
431 }
432
433 // configure the connection and statement objects
434 $this->setDB2Option('db2_attr_case', 'DB2_CASE_LOWER', self::CONN_OPTION | self::STMT_OPTION);
435 $this->setDB2Option('deferred_prepare', 'DB2_DEFERRED_PREPARE_ON', self::STMT_OPTION);
436 $this->setDB2Option('rowcount', 'DB2_ROWCOUNT_PREFETCH_ON', self::STMT_OPTION);
437
438 $this->open( $server, $user, $password, $dbName);
439 }
440
441 /**
442 * Enables options only if the ibm_db2 extension version supports them
443 * @param $name String: name of the option in the options array
444 * @param $const String: name of the constant holding the right option value
445 * @param $type Integer: whether this is a Connection or Statement otion
446 */
447 private function setDB2Option($name, $const, $type) {
448 if (defined($const)) {
449 if ($type & self::CONN_OPTION) $this->mConnOptions[$name] = constant($const);
450 if ($type & self::STMT_OPTION) $this->mStmtOptions[$name] = constant($const);
451 }
452 else {
453 $this->installPrint("$const is not defined. ibm_db2 version is likely too low.");
454 }
455 }
456
457 /**
458 * Outputs debug information in the appropriate place
459 * @param $string String: the relevant debug message
460 */
461 private function installPrint($string) {
462 wfDebug("$string");
463 if ($this->mMode == self::INSTALL_MODE) {
464 print "<li>$string</li>";
465 flush();
466 }
467 }
468
469 /**
470 * Opens a database connection and returns it
471 * Closes any existing connection
472 * @return a fresh connection
473 * @param $server String: hostname
474 * @param $user String
475 * @param $password String
476 * @param $dbName String: database name
477 */
478 public function open( $server, $user, $password, $dbName )
479 {
480 // Load the port number
481 global $wgDBport, $wgDBcataloged;
482 wfProfileIn( __METHOD__ );
483
484 // Load IBM DB2 driver if missing
485 wfDl( 'ibm_db2' );
486
487 // Test for IBM DB2 support, to avoid suppressed fatal error
488 if ( !function_exists( 'db2_connect' ) ) {
489 $error = "DB2 functions missing, have you enabled the ibm_db2 extension for PHP?\n";
490 $this->installPrint($error);
491 $this->reportConnectionError($error);
492 }
493
494 if (!strlen($user)) { // Copied from Postgres
495 return null;
496 }
497
498 // Close existing connection
499 $this->close();
500 // Cache conn info
501 $this->mServer = $server;
502 $this->mPort = $port = $wgDBport;
503 $this->mUser = $user;
504 $this->mPassword = $password;
505 $this->mDBname = $dbName;
506 $this->mCataloged = $cataloged = $wgDBcataloged;
507
508 if ( $cataloged == self::CATALOGED ) {
509 $this->openCataloged($dbName, $user, $password);
510 }
511 elseif ( $cataloged == self::UNCATALOGED ) {
512 $this->openUncataloged($dbName, $user, $password, $server, $port);
513 }
514 // Apply connection config
515 db2_set_option($this->mConn, $this->mConnOptions, 1);
516 // Not all MediaWiki code is transactional
517 // Rather, turn autocommit off in the begin function and turn on after a commit
518 db2_autocommit($this->mConn, DB2_AUTOCOMMIT_ON);
519
520 if ( !$this->mConn ) {
521 $this->installPrint( "DB connection error\n" );
522 $this->installPrint( "Server: $server, Database: $dbName, User: $user, Password: " . substr( $password, 0, 3 ) . "...\n" );
523 $this->installPrint( $this->lastError()."\n" );
524 return null;
525 }
526
527 $this->mOpened = true;
528 $this->applySchema();
529
530 wfProfileOut( __METHOD__ );
531 return $this->mConn;
532 }
533
534 /**
535 * Opens a cataloged database connection, sets mConn
536 */
537 protected function openCataloged( $dbName, $user, $password )
538 {
539 @$this->mConn = db2_connect($dbName, $user, $password);
540 }
541
542 /**
543 * Opens an uncataloged database connection, sets mConn
544 */
545 protected function openUncataloged( $dbName, $user, $password, $server, $port )
546 {
547 $str = "DRIVER={IBM DB2 ODBC DRIVER};";
548 $str .= "DATABASE=$dbName;";
549 $str .= "HOSTNAME=$server;";
550 if ($port) $str .= "PORT=$port;";
551 $str .= "PROTOCOL=TCPIP;";
552 $str .= "UID=$user;";
553 $str .= "PWD=$password;";
554
555 @$this->mConn = db2_connect($str, $user, $password);
556 }
557
558 /**
559 * Closes a database connection, if it is open
560 * Returns success, true if already closed
561 */
562 public function close() {
563 $this->mOpened = false;
564 if ( $this->mConn ) {
565 if ($this->trxLevel() > 0) {
566 $this->commit();
567 }
568 return db2_close( $this->mConn );
569 }
570 else {
571 return true;
572 }
573 }
574
575 /**
576 * Returns a fresh instance of this class
577 *
578 * @param $server String: hostname of database server
579 * @param $user String: username
580 * @param $password String
581 * @param $dbName String: database name on the server
582 * @param $failFunction Callback (optional)
583 * @param $flags Integer: database behaviour flags (optional, unused)
584 * @return DatabaseIbm_db2 object
585 */
586 static function newFromParams( $server, $user, $password, $dbName, $failFunction = false, $flags = 0)
587 {
588 return new DatabaseIbm_db2( $server, $user, $password, $dbName, $failFunction, $flags );
589 }
590
591 /**
592 * Retrieves the most current database error
593 * Forces a database rollback
594 */
595 public function lastError() {
596 $connerr = db2_conn_errormsg();
597 if ($connerr) {
598 //$this->rollback();
599 return $connerr;
600 }
601 $stmterr = db2_stmt_errormsg();
602 if ($stmterr) {
603 //$this->rollback();
604 return $stmterr;
605 }
606
607 return false;
608 }
609
610 /**
611 * Get the last error number
612 * Return 0 if no error
613 * @return integer
614 */
615 public function lastErrno() {
616 $connerr = db2_conn_error();
617 if ($connerr) return $connerr;
618 $stmterr = db2_stmt_error();
619 if ($stmterr) return $stmterr;
620 return 0;
621 }
622
623 /**
624 * Is a database connection open?
625 * @return
626 */
627 public function isOpen() { return $this->mOpened; }
628
629 /**
630 * The DBMS-dependent part of query()
631 * @param $sql String: SQL query.
632 * @return object Result object to feed to fetchObject, fetchRow, ...; or false on failure
633 * @access private
634 */
635 /*private*/
636 public function doQuery( $sql ) {
637 //print "<li><pre>$sql</pre></li>";
638 // Switch into the correct namespace
639 $this->applySchema();
640
641 $ret = db2_exec( $this->mConn, $sql, $this->mStmtOptions );
642 if( !$ret ) {
643 print "<br><pre>";
644 print $sql;
645 print "</pre><br>";
646 $error = db2_stmt_errormsg();
647 throw new DBUnexpectedError($this, 'SQL error: ' . htmlspecialchars( $error ) );
648 }
649 $this->mLastResult = $ret;
650 $this->mAffectedRows = null; // Not calculated until asked for
651 return $ret;
652 }
653
654 /**
655 * @return string Version information from the database
656 */
657 public function getServerVersion() {
658 $info = db2_server_info( $this->mConn );
659 return $info->DBMS_VER;
660 }
661
662 /**
663 * Queries whether a given table exists
664 * @return boolean
665 */
666 public function tableExists( $table ) {
667 $schema = $this->mSchema;
668 $sql = <<< EOF
669 SELECT COUNT(*) FROM SYSIBM.SYSTABLES ST
670 WHERE ST.NAME = '$table' AND ST.CREATOR = '$schema'
671 EOF;
672 $res = $this->query( $sql );
673 if (!$res) return false;
674
675 // If the table exists, there should be one of it
676 @$row = $this->fetchRow($res);
677 $count = $row[0];
678 if ($count == '1' or $count == 1) {
679 return true;
680 }
681
682 return false;
683 }
684
685 /**
686 * Fetch the next row from the given result object, in object form.
687 * Fields can be retrieved with $row->fieldname, with fields acting like
688 * member variables.
689 *
690 * @param $res SQL result object as returned from Database::query(), etc.
691 * @return DB2 row object
692 * @throws DBUnexpectedError Thrown if the database returns an error
693 */
694 public function fetchObject( $res ) {
695 if ( $res instanceof ResultWrapper ) {
696 $res = $res->result;
697 }
698 @$row = db2_fetch_object( $res );
699 if( $this->lastErrno() ) {
700 throw new DBUnexpectedError( $this, 'Error in fetchObject(): ' . htmlspecialchars( $this->lastError() ) );
701 }
702 return $row;
703 }
704
705 /**
706 * Fetch the next row from the given result object, in associative array
707 * form. Fields are retrieved with $row['fieldname'].
708 *
709 * @param $res SQL result object as returned from Database::query(), etc.
710 * @return DB2 row object
711 * @throws DBUnexpectedError Thrown if the database returns an error
712 */
713 public function fetchRow( $res ) {
714 if ( $res instanceof ResultWrapper ) {
715 $res = $res->result;
716 }
717 @$row = db2_fetch_array( $res );
718 if ( $this->lastErrno() ) {
719 throw new DBUnexpectedError( $this, 'Error in fetchRow(): ' . htmlspecialchars( $this->lastError() ) );
720 }
721 return $row;
722 }
723
724 /**
725 * Override if introduced to base Database class
726 */
727 public function initial_setup() {
728 // do nothing
729 }
730
731 /**
732 * Create tables, stored procedures, and so on
733 */
734 public function setup_database() {
735 // Timeout was being changed earlier due to mysterious crashes
736 // Changing it now may cause more problems than not changing it
737 //set_time_limit(240);
738 try {
739 // TODO: switch to root login if available
740
741 // Switch into the correct namespace
742 $this->applySchema();
743 $this->begin();
744
745 $res = $this->sourceFile( "../maintenance/ibm_db2/tables.sql" );
746 if ($res !== true) {
747 print " <b>FAILED</b>: " . htmlspecialchars( $res ) . "</li>";
748 } else {
749 print " done</li>";
750 }
751 $res = null;
752
753 // TODO: populate interwiki links
754
755 if ($this->lastError()) {
756 print "<li>Errors encountered during table creation -- rolled back</li>\n";
757 print "<li>Please install again</li>\n";
758 $this->rollback();
759 }
760 else {
761 $this->commit();
762 }
763 }
764 catch (MWException $mwe)
765 {
766 print "<br><pre>$mwe</pre><br>";
767 }
768 }
769
770 /**
771 * Escapes strings
772 * Doesn't escape numbers
773 * @param $s String: string to escape
774 * @return escaped string
775 */
776 public function addQuotes( $s ) {
777 //$this->installPrint("DB2::addQuotes($s)\n");
778 if ( is_null( $s ) ) {
779 return "NULL";
780 } else if ($s instanceof Blob) {
781 return "'".$s->fetch($s)."'";
782 } else if ($s instanceof IBM_DB2Blob) {
783 return "'".$this->decodeBlob($s)."'";
784 }
785 $s = $this->strencode($s);
786 if ( is_numeric($s) ) {
787 return $s;
788 }
789 else {
790 return "'$s'";
791 }
792 }
793
794 /**
795 * Verifies that a DB2 column/field type is numeric
796 * @return bool true if numeric
797 * @param $type String: DB2 column type
798 */
799 public function is_numeric_type( $type ) {
800 switch (strtoupper($type)) {
801 case 'SMALLINT':
802 case 'INTEGER':
803 case 'INT':
804 case 'BIGINT':
805 case 'DECIMAL':
806 case 'REAL':
807 case 'DOUBLE':
808 case 'DECFLOAT':
809 return true;
810 }
811 return false;
812 }
813
814 /**
815 * Alias for addQuotes()
816 * @param $s String: string to escape
817 * @return escaped string
818 */
819 public function strencode( $s ) {
820 // Bloody useless function
821 // Prepends backslashes to \x00, \n, \r, \, ', " and \x1a.
822 // But also necessary
823 $s = db2_escape_string($s);
824 // Wide characters are evil -- some of them look like '
825 $s = utf8_encode($s);
826 // Fix its stupidity
827 $from = array("\\\\", "\\'", '\\n', '\\t', '\\"', '\\r');
828 $to = array("\\", "''", "\n", "\t", '"', "\r");
829 $s = str_replace($from, $to, $s); // DB2 expects '', not \' escaping
830 return $s;
831 }
832
833 /**
834 * Switch into the database schema
835 */
836 protected function applySchema() {
837 if ( !($this->mSchemaSet) ) {
838 $this->mSchemaSet = true;
839 $this->begin();
840 $this->doQuery("SET SCHEMA = $this->mSchema");
841 $this->commit();
842 }
843 }
844
845 /**
846 * Start a transaction (mandatory)
847 */
848 public function begin( $fname = 'DatabaseIbm_db2::begin' ) {
849 // turn off auto-commit
850 db2_autocommit($this->mConn, DB2_AUTOCOMMIT_OFF);
851 $this->mTrxLevel = 1;
852 }
853
854 /**
855 * End a transaction
856 * Must have a preceding begin()
857 */
858 public function commit( $fname = 'DatabaseIbm_db2::commit' ) {
859 db2_commit($this->mConn);
860 // turn auto-commit back on
861 db2_autocommit($this->mConn, DB2_AUTOCOMMIT_ON);
862 $this->mTrxLevel = 0;
863 }
864
865 /**
866 * Cancel a transaction
867 */
868 public function rollback( $fname = 'DatabaseIbm_db2::rollback' ) {
869 db2_rollback($this->mConn);
870 // turn auto-commit back on
871 // not sure if this is appropriate
872 db2_autocommit($this->mConn, DB2_AUTOCOMMIT_ON);
873 $this->mTrxLevel = 0;
874 }
875
876 /**
877 * Makes an encoded list of strings from an array
878 * $mode:
879 * LIST_COMMA - comma separated, no field names
880 * LIST_AND - ANDed WHERE clause (without the WHERE)
881 * LIST_OR - ORed WHERE clause (without the WHERE)
882 * LIST_SET - comma separated with field names, like a SET clause
883 * LIST_NAMES - comma separated field names
884 */
885 public function makeList( $a, $mode = LIST_COMMA ) {
886 if ( !is_array( $a ) ) {
887 throw new DBUnexpectedError( $this, 'Database::makeList called with incorrect parameters' );
888 }
889
890 $first = true;
891 $list = '';
892 foreach ( $a as $field => $value ) {
893 if ( !$first ) {
894 if ( $mode == LIST_AND ) {
895 $list .= ' AND ';
896 } elseif($mode == LIST_OR) {
897 $list .= ' OR ';
898 } else {
899 $list .= ',';
900 }
901 } else {
902 $first = false;
903 }
904 if ( ($mode == LIST_AND || $mode == LIST_OR) && is_numeric( $field ) ) {
905 $list .= "($value)";
906 } elseif ( ($mode == LIST_SET) && is_numeric( $field ) ) {
907 $list .= "$value";
908 } elseif ( ($mode == LIST_AND || $mode == LIST_OR) && is_array($value) ) {
909 if( count( $value ) == 0 ) {
910 throw new MWException( __METHOD__.': empty input' );
911 } elseif( count( $value ) == 1 ) {
912 // Special-case single values, as IN isn't terribly efficient
913 // Don't necessarily assume the single key is 0; we don't
914 // enforce linear numeric ordering on other arrays here.
915 $value = array_values( $value );
916 $list .= $field." = ".$this->addQuotes( $value[0] );
917 } else {
918 $list .= $field." IN (".$this->makeList($value).") ";
919 }
920 } elseif( is_null($value) ) {
921 if ( $mode == LIST_AND || $mode == LIST_OR ) {
922 $list .= "$field IS ";
923 } elseif ( $mode == LIST_SET ) {
924 $list .= "$field = ";
925 }
926 $list .= 'NULL';
927 } else {
928 if ( $mode == LIST_AND || $mode == LIST_OR || $mode == LIST_SET ) {
929 $list .= "$field = ";
930 }
931 if ( $mode == LIST_NAMES ) {
932 $list .= $value;
933 }
934 // Leo: Can't insert quoted numbers into numeric columns
935 // (?) Might cause other problems. May have to check column type before insertion.
936 else if ( is_numeric($value) ) {
937 $list .= $value;
938 }
939 else {
940 $list .= $this->addQuotes( $value );
941 }
942 }
943 }
944 return $list;
945 }
946
947 /**
948 * Construct a LIMIT query with optional offset
949 * This is used for query pages
950 * @param $sql string SQL query we will append the limit too
951 * @param $limit integer the SQL limit
952 * @param $offset integer the SQL offset (default false)
953 */
954 public function limitResult($sql, $limit, $offset=false) {
955 if( !is_numeric($limit) ) {
956 throw new DBUnexpectedError( $this, "Invalid non-numeric limit passed to limitResult()\n" );
957 }
958 if( $offset ) {
959 $this->installPrint("Offset parameter not supported in limitResult()\n");
960 }
961 // TODO implement proper offset handling
962 // idea: get all the rows between 0 and offset, advance cursor to offset
963 return "$sql FETCH FIRST $limit ROWS ONLY ";
964 }
965
966 /**
967 * Handle reserved keyword replacement in table names
968 * @return
969 * @param $name Object
970 */
971 public function tableName( $name ) {
972 # Replace reserved words with better ones
973 // switch( $name ) {
974 // case 'user':
975 // return 'mwuser';
976 // case 'text':
977 // return 'pagecontent';
978 // default:
979 // return $name;
980 // }
981 // we want maximum compatibility with MySQL schema
982 return $name;
983 }
984
985 /**
986 * Generates a timestamp in an insertable format
987 * @return string timestamp value
988 * @param $ts timestamp
989 */
990 public function timestamp( $ts=0 ) {
991 // TS_MW cannot be easily distinguished from an integer
992 return wfTimestamp(TS_DB2,$ts);
993 }
994
995 /**
996 * Return the next in a sequence, save the value for retrieval via insertId()
997 * @param $seqName String: name of a defined sequence in the database
998 * @return next value in that sequence
999 */
1000 public function nextSequenceValue( $seqName ) {
1001 // Not using sequences in the primary schema to allow for easy third-party migration scripts
1002 // Emulating MySQL behaviour of using NULL to signal that sequences aren't used
1003 /*
1004 $safeseq = preg_replace( "/'/", "''", $seqName );
1005 $res = $this->query( "VALUES NEXTVAL FOR $safeseq" );
1006 $row = $this->fetchRow( $res );
1007 $this->mInsertId = $row[0];
1008 return $this->mInsertId;
1009 */
1010 return null;
1011 }
1012
1013 /**
1014 * This must be called after nextSequenceVal
1015 * @return Last sequence value used as a primary key
1016 */
1017 public function insertId() {
1018 return $this->mInsertId;
1019 }
1020
1021 /**
1022 * Updates the mInsertId property with the value of the last insert into a generated column
1023 * @param $table String: sanitized table name
1024 * @param $primaryKey Mixed: string name of the primary key or a bool if this call is a do-nothing
1025 * @param $stmt Resource: prepared statement resource
1026 * of the SELECT primary_key FROM FINAL TABLE ( INSERT ... ) form
1027 */
1028 private function calcInsertId($table, $primaryKey, $stmt) {
1029 if ($primaryKey) {
1030 $id_row = $this->fetchRow($stmt);
1031 $this->mInsertId = $id_row[0];
1032 }
1033 }
1034
1035 /**
1036 * INSERT wrapper, inserts an array into a table
1037 *
1038 * $args may be a single associative array, or an array of these with numeric keys,
1039 * for multi-row insert
1040 *
1041 * @param $table String: Name of the table to insert to.
1042 * @param $args Array: Items to insert into the table.
1043 * @param $fname String: Name of the function, for profiling
1044 * @param $options String or Array. Valid options: IGNORE
1045 *
1046 * @return bool Success of insert operation. IGNORE always returns true.
1047 */
1048 public function insert( $table, $args, $fname = 'DatabaseIbm_db2::insert', $options = array() ) {
1049 if ( !count( $args ) ) {
1050 return true;
1051 }
1052 // get database-specific table name (not used)
1053 $table = $this->tableName( $table );
1054 // format options as an array
1055 if ( !is_array( $options ) ) $options = array( $options );
1056 // format args as an array of arrays
1057 if ( !( isset( $args[0] ) && is_array( $args[0] ) ) ) {
1058 $args = array($args);
1059 }
1060 // prevent insertion of NULL into primary key columns
1061 list($args, $primaryKeys) = $this->removeNullPrimaryKeys($table, $args);
1062 // if there's only one primary key
1063 // we'll be able to read its value after insertion
1064 $primaryKey = false;
1065 if (count($primaryKeys) == 1) {
1066 $primaryKey = $primaryKeys[0];
1067 }
1068
1069 // get column names
1070 $keys = array_keys( $args[0] );
1071 $key_count = count($keys);
1072
1073 // If IGNORE is set, we use savepoints to emulate mysql's behavior
1074 $ignore = in_array( 'IGNORE', $options ) ? 'mw' : '';
1075
1076 // assume success
1077 $res = true;
1078 // If we are not in a transaction, we need to be for savepoint trickery
1079 if (! $this->mTrxLevel) {
1080 $this->begin();
1081 }
1082
1083 $sql = "INSERT INTO $table (" . implode( ',', $keys ) . ') VALUES ';
1084 switch($key_count) {
1085 //case 0 impossible
1086 case 1:
1087 $sql .= '(?)';
1088 break;
1089 default:
1090 $sql .= '(?' . str_repeat(',?', $key_count-1) . ')';
1091 }
1092 // add logic to read back the new primary key value
1093 if ($primaryKey) {
1094 $sql = "SELECT $primaryKey FROM FINAL TABLE($sql)";
1095 }
1096 $stmt = $this->prepare($sql);
1097
1098 // start a transaction/enter transaction mode
1099 $this->begin();
1100
1101 if ( !$ignore ) {
1102 foreach ( $args as $row ) {
1103 // insert each row into the database
1104 $res = $res & $this->execute($stmt, $row);
1105 // get the last inserted value into a generated column
1106 $this->calcInsertId($table, $primaryKey, $stmt);
1107 }
1108 }
1109 else {
1110 $olde = error_reporting( 0 );
1111 // For future use, we may want to track the number of actual inserts
1112 // Right now, insert (all writes) simply return true/false
1113 $numrowsinserted = 0;
1114
1115 // always return true
1116 $res = true;
1117
1118 foreach ( $args as $row ) {
1119 $overhead = "SAVEPOINT $ignore ON ROLLBACK RETAIN CURSORS";
1120 db2_exec($this->mConn, $overhead, $this->mStmtOptions);
1121
1122 $this->execute($stmt, $row);
1123 // get the last inserted value into a generated column
1124 $this->calcInsertId($table, $primaryKey, $stmt);
1125
1126 $errNum = $this->lastErrno();
1127 if ($errNum) {
1128 db2_exec( $this->mConn, "ROLLBACK TO SAVEPOINT $ignore", $this->mStmtOptions );
1129 }
1130 else {
1131 db2_exec( $this->mConn, "RELEASE SAVEPOINT $ignore", $this->mStmtOptions );
1132 $numrowsinserted++;
1133 }
1134 }
1135
1136 $olde = error_reporting( $olde );
1137 // Set the affected row count for the whole operation
1138 $this->mAffectedRows = $numrowsinserted;
1139 }
1140 // commit either way
1141 $this->commit();
1142
1143 return $res;
1144 }
1145
1146 /**
1147 * Given a table name and a hash of columns with values
1148 * Removes primary key columns from the hash where the value is NULL
1149 *
1150 * @param $table String: name of the table
1151 * @param $args Array of hashes of column names with values
1152 * @return Array: tuple containing filtered array of columns, array of primary keys
1153 */
1154 private function removeNullPrimaryKeys($table, $args) {
1155 $schema = $this->mSchema;
1156 // find out the primary keys
1157 $keyres = db2_primary_keys($this->mConn, null, strtoupper($schema), strtoupper($table));
1158 $keys = array();
1159 for ($row = $this->fetchObject($keyres); $row != null; $row = $this->fetchRow($keyres)) {
1160 $keys[] = strtolower($row->column_name);
1161 }
1162 // remove primary keys
1163 foreach ($args as $ai => $row) {
1164 foreach ($keys as $ki => $key) {
1165 if ($row[$key] == null) {
1166 unset($row[$key]);
1167 }
1168 }
1169 $args[$ai] = $row;
1170 }
1171 // return modified hash
1172 return array($args, $keys);
1173 }
1174
1175 /**
1176 * UPDATE wrapper, takes a condition array and a SET array
1177 *
1178 * @param $table String: The table to UPDATE
1179 * @param $values An array of values to SET
1180 * @param $conds An array of conditions (WHERE). Use '*' to update all rows.
1181 * @param $fname String: The Class::Function calling this function
1182 * (for the log)
1183 * @param $options An array of UPDATE options, can be one or
1184 * more of IGNORE, LOW_PRIORITY
1185 * @return Boolean
1186 */
1187 public function update( $table, $values, $conds, $fname = 'Database::update', $options = array() ) {
1188 $table = $this->tableName( $table );
1189 $opts = $this->makeUpdateOptions( $options );
1190 $sql = "UPDATE $opts $table SET " . $this->makeList( $values, LIST_SET );
1191 if ( $conds != '*' ) {
1192 $sql .= " WHERE " . $this->makeList( $conds, LIST_AND );
1193 }
1194 return $this->query( $sql, $fname );
1195 }
1196
1197 /**
1198 * DELETE query wrapper
1199 *
1200 * Use $conds == "*" to delete all rows
1201 */
1202 public function delete( $table, $conds, $fname = 'Database::delete' ) {
1203 if ( !$conds ) {
1204 throw new DBUnexpectedError( $this, 'Database::delete() called with no conditions' );
1205 }
1206 $table = $this->tableName( $table );
1207 $sql = "DELETE FROM $table";
1208 if ( $conds != '*' ) {
1209 $sql .= ' WHERE ' . $this->makeList( $conds, LIST_AND );
1210 }
1211 return $this->query( $sql, $fname );
1212 }
1213
1214 /**
1215 * Returns the number of rows affected by the last query or 0
1216 * @return Integer: the number of rows affected by the last query
1217 */
1218 public function affectedRows() {
1219 if ( !is_null( $this->mAffectedRows ) ) {
1220 // Forced result for simulated queries
1221 return $this->mAffectedRows;
1222 }
1223 if( empty( $this->mLastResult ) )
1224 return 0;
1225 return db2_num_rows( $this->mLastResult );
1226 }
1227
1228 /**
1229 * Simulates REPLACE with a DELETE followed by INSERT
1230 * @param $table Object
1231 * @param $uniqueIndexes Array consisting of indexes and arrays of indexes
1232 * @param $rows Array: rows to insert
1233 * @param $fname String: name of the function for profiling
1234 * @return nothing
1235 */
1236 function replace( $table, $uniqueIndexes, $rows, $fname = 'DatabaseIbm_db2::replace' ) {
1237 $table = $this->tableName( $table );
1238
1239 if (count($rows)==0) {
1240 return;
1241 }
1242
1243 # Single row case
1244 if ( !is_array( reset( $rows ) ) ) {
1245 $rows = array( $rows );
1246 }
1247
1248 foreach( $rows as $row ) {
1249 # Delete rows which collide
1250 if ( $uniqueIndexes ) {
1251 $sql = "DELETE FROM $table WHERE ";
1252 $first = true;
1253 foreach ( $uniqueIndexes as $index ) {
1254 if ( $first ) {
1255 $first = false;
1256 $sql .= "(";
1257 } else {
1258 $sql .= ') OR (';
1259 }
1260 if ( is_array( $index ) ) {
1261 $first2 = true;
1262 foreach ( $index as $col ) {
1263 if ( $first2 ) {
1264 $first2 = false;
1265 } else {
1266 $sql .= ' AND ';
1267 }
1268 $sql .= $col.'=' . $this->addQuotes( $row[$col] );
1269 }
1270 } else {
1271 $sql .= $index.'=' . $this->addQuotes( $row[$index] );
1272 }
1273 }
1274 $sql .= ')';
1275 $this->query( $sql, $fname );
1276 }
1277
1278 # Now insert the row
1279 $sql = "INSERT INTO $table (" . $this->makeList( array_keys( $row ), LIST_NAMES ) .') VALUES (' .
1280 $this->makeList( $row, LIST_COMMA ) . ')';
1281 $this->query( $sql, $fname );
1282 }
1283 }
1284
1285 /**
1286 * Returns the number of rows in the result set
1287 * Has to be called right after the corresponding select query
1288 * @param $res Object result set
1289 * @return Integer: number of rows
1290 */
1291 public function numRows( $res ) {
1292 if ( $res instanceof ResultWrapper ) {
1293 $res = $res->result;
1294 }
1295 if ( $this->mNumRows ) {
1296 return $this->mNumRows;
1297 }
1298 else {
1299 return 0;
1300 }
1301 }
1302
1303 /**
1304 * Moves the row pointer of the result set
1305 * @param $res Object: result set
1306 * @param $row Integer: row number
1307 * @return success or failure
1308 */
1309 public function dataSeek( $res, $row ) {
1310 if ( $res instanceof ResultWrapper ) {
1311 $res = $res->result;
1312 }
1313 return db2_fetch_row( $res, $row );
1314 }
1315
1316 ###
1317 # Fix notices in Block.php
1318 ###
1319
1320 /**
1321 * Frees memory associated with a statement resource
1322 * @param $res Object: statement resource to free
1323 * @return Boolean success or failure
1324 */
1325 public function freeResult( $res ) {
1326 if ( $res instanceof ResultWrapper ) {
1327 $res = $res->result;
1328 }
1329 if ( !@db2_free_result( $res ) ) {
1330 throw new DBUnexpectedError($this, "Unable to free DB2 result\n" );
1331 }
1332 }
1333
1334 /**
1335 * Returns the number of columns in a resource
1336 * @param $res Object: statement resource
1337 * @return Number of fields/columns in resource
1338 */
1339 public function numFields( $res ) {
1340 if ( $res instanceof ResultWrapper ) {
1341 $res = $res->result;
1342 }
1343 return db2_num_fields( $res );
1344 }
1345
1346 /**
1347 * Returns the nth column name
1348 * @param $res Object: statement resource
1349 * @param $n Integer: Index of field or column
1350 * @return String name of nth column
1351 */
1352 public function fieldName( $res, $n ) {
1353 if ( $res instanceof ResultWrapper ) {
1354 $res = $res->result;
1355 }
1356 return db2_field_name( $res, $n );
1357 }
1358
1359 /**
1360 * SELECT wrapper
1361 *
1362 * @param $table Array or string, table name(s) (prefix auto-added)
1363 * @param $vars Array or string, field name(s) to be retrieved
1364 * @param $conds Array or string, condition(s) for WHERE
1365 * @param $fname String: calling function name (use __METHOD__) for logs/profiling
1366 * @param $options Associative array of options (e.g. array('GROUP BY' => 'page_title')),
1367 * see Database::makeSelectOptions code for list of supported stuff
1368 * @param $join_conds Associative array of table join conditions (optional)
1369 * (e.g. array( 'page' => array('LEFT JOIN','page_latest=rev_id') )
1370 * @return Mixed: database result resource (feed to Database::fetchObject or whatever), or false on failure
1371 */
1372 public function select( $table, $vars, $conds='', $fname = 'DatabaseIbm_db2::select', $options = array(), $join_conds = array() )
1373 {
1374 $res = parent::select( $table, $vars, $conds, $fname, $options, $join_conds );
1375
1376 // We must adjust for offset
1377 if ( isset( $options['LIMIT'] ) ) {
1378 if ( isset ($options['OFFSET'] ) ) {
1379 $limit = $options['LIMIT'];
1380 $offset = $options['OFFSET'];
1381 }
1382 }
1383
1384
1385 // DB2 does not have a proper num_rows() function yet, so we must emulate it
1386 // DB2 9.5.3/9.5.4 and the corresponding ibm_db2 driver will introduce a working one
1387 // Yay!
1388
1389 // we want the count
1390 $vars2 = array('count(*) as num_rows');
1391 // respecting just the limit option
1392 $options2 = array();
1393 if ( isset( $options['LIMIT'] ) ) $options2['LIMIT'] = $options['LIMIT'];
1394 // but don't try to emulate for GROUP BY
1395 if ( isset( $options['GROUP BY'] ) ) return $res;
1396
1397 $res2 = parent::select( $table, $vars2, $conds, $fname, $options2, $join_conds );
1398 $obj = $this->fetchObject($res2);
1399 $this->mNumRows = $obj->num_rows;
1400
1401
1402 return $res;
1403 }
1404
1405 /**
1406 * Handles ordering, grouping, and having options ('GROUP BY' => colname)
1407 * Has limited support for per-column options (colnum => 'DISTINCT')
1408 *
1409 * @private
1410 *
1411 * @param $options Associative array of options to be turned into
1412 * an SQL query, valid keys are listed in the function.
1413 * @return Array
1414 */
1415 function makeSelectOptions( $options ) {
1416 $preLimitTail = $postLimitTail = '';
1417 $startOpts = '';
1418
1419 $noKeyOptions = array();
1420 foreach ( $options as $key => $option ) {
1421 if ( is_numeric( $key ) ) {
1422 $noKeyOptions[$option] = true;
1423 }
1424 }
1425
1426 if ( isset( $options['GROUP BY'] ) ) $preLimitTail .= " GROUP BY {$options['GROUP BY']}";
1427 if ( isset( $options['HAVING'] ) ) $preLimitTail .= " HAVING {$options['HAVING']}";
1428 if ( isset( $options['ORDER BY'] ) ) $preLimitTail .= " ORDER BY {$options['ORDER BY']}";
1429
1430 if ( isset( $noKeyOptions['DISTINCT'] ) || isset( $noKeyOptions['DISTINCTROW'] ) ) $startOpts .= 'DISTINCT';
1431
1432 return array( $startOpts, '', $preLimitTail, $postLimitTail );
1433 }
1434
1435 /**
1436 * Returns link to IBM DB2 free download
1437 * @return string wikitext of a link to the server software's web site
1438 */
1439 public static function getSoftwareLink() {
1440 return "[http://www.ibm.com/software/data/db2/express/?s_cmp=ECDDWW01&s_tact=MediaWiki IBM DB2]";
1441 }
1442
1443 /**
1444 * Get search engine class. All subclasses of this
1445 * need to implement this if they wish to use searching.
1446 *
1447 * @return String
1448 */
1449 public function getSearchEngine() {
1450 return "SearchIBM_DB2";
1451 }
1452
1453 /**
1454 * Did the last database access fail because of deadlock?
1455 * @return Boolean
1456 */
1457 public function wasDeadlock() {
1458 // get SQLSTATE
1459 $err = $this->lastErrno();
1460 switch($err) {
1461 case '40001': // sql0911n, Deadlock or timeout, rollback
1462 case '57011': // sql0904n, Resource unavailable, no rollback
1463 case '57033': // sql0913n, Deadlock or timeout, no rollback
1464 $this->installPrint("In a deadlock because of SQLSTATE $err");
1465 return true;
1466 }
1467 return false;
1468 }
1469
1470 /**
1471 * Ping the server and try to reconnect if it there is no connection
1472 * The connection may be closed and reopened while this happens
1473 * @return Boolean: whether the connection exists
1474 */
1475 public function ping() {
1476 // db2_ping() doesn't exist
1477 // Emulate
1478 $this->close();
1479 if ($this->mCataloged == null) {
1480 return false;
1481 }
1482 else if ($this->mCataloged) {
1483 $this->mConn = $this->openCataloged($this->mDBName, $this->mUser, $this->mPassword);
1484 }
1485 else if (!$this->mCataloged) {
1486 $this->mConn = $this->openUncataloged($this->mDBName, $this->mUser, $this->mPassword, $this->mServer, $this->mPort);
1487 }
1488 return false;
1489 }
1490 ######################################
1491 # Unimplemented and not applicable
1492 ######################################
1493 /**
1494 * Not implemented
1495 * @return string ''
1496 */
1497 public function getStatus( $which="%" ) { $this->installPrint('Not implemented for DB2: getStatus()'); return ''; }
1498 /**
1499 * Not implemented
1500 * @return string $sql
1501 */
1502 public function limitResultForUpdate($sql, $num) { $this->installPrint('Not implemented for DB2: limitResultForUpdate()'); return $sql; }
1503
1504 /**
1505 * Only useful with fake prepare like in base Database class
1506 * @return string
1507 */
1508 public function fillPreparedArg( $matches ) { $this->installPrint('Not useful for DB2: fillPreparedArg()'); return ''; }
1509
1510 ######################################
1511 # Reflection
1512 ######################################
1513
1514 /**
1515 * Returns information about an index
1516 * If errors are explicitly ignored, returns NULL on failure
1517 * @param $table String: table name
1518 * @param $index String: index name
1519 * @param $fname String: function name for logging and profiling
1520 * @return Object query row in object form
1521 */
1522 public function indexInfo( $table, $index, $fname = 'DatabaseIbm_db2::indexExists' ) {
1523 $table = $this->tableName( $table );
1524 $sql = <<<SQL
1525 SELECT name as indexname
1526 FROM sysibm.sysindexes si
1527 WHERE si.name='$index' AND si.tbname='$table' AND sc.tbcreator='$this->mSchema'
1528 SQL;
1529 $res = $this->query( $sql, $fname );
1530 if ( !$res ) {
1531 return null;
1532 }
1533 $row = $this->fetchObject( $res );
1534 if ($row != null) return $row;
1535 else return false;
1536 }
1537
1538 /**
1539 * Returns an information object on a table column
1540 * @param $table String: table name
1541 * @param $field String: column name
1542 * @return IBM_DB2Field
1543 */
1544 public function fieldInfo( $table, $field ) {
1545 return IBM_DB2Field::fromText($this, $table, $field);
1546 }
1547
1548 /**
1549 * db2_field_type() wrapper
1550 * @param $res Object: result of executed statement
1551 * @param $index Mixed: number or name of the column
1552 * @return String column type
1553 */
1554 public function fieldType( $res, $index ) {
1555 if ( $res instanceof ResultWrapper ) {
1556 $res = $res->result;
1557 }
1558 return db2_field_type( $res, $index );
1559 }
1560
1561 /**
1562 * Verifies that an index was created as unique
1563 * @param $table String: table name
1564 * @param $index String: index name
1565 * @param $fname function name for profiling
1566 * @return Bool
1567 */
1568 public function indexUnique ($table, $index, $fname = 'Database::indexUnique' ) {
1569 $table = $this->tableName( $table );
1570 $sql = <<<SQL
1571 SELECT si.name as indexname
1572 FROM sysibm.sysindexes si
1573 WHERE si.name='$index' AND si.tbname='$table' AND sc.tbcreator='$this->mSchema'
1574 AND si.uniquerule IN ('U', 'P')
1575 SQL;
1576 $res = $this->query( $sql, $fname );
1577 if ( !$res ) {
1578 return null;
1579 }
1580 if ($this->fetchObject( $res )) {
1581 return true;
1582 }
1583 return false;
1584
1585 }
1586
1587 /**
1588 * Returns the size of a text field, or -1 for "unlimited"
1589 * @param $table String: table name
1590 * @param $field String: column name
1591 * @return Integer: length or -1 for unlimited
1592 */
1593 public function textFieldSize( $table, $field ) {
1594 $table = $this->tableName( $table );
1595 $sql = <<<SQL
1596 SELECT length as size
1597 FROM sysibm.syscolumns sc
1598 WHERE sc.name='$field' AND sc.tbname='$table' AND sc.tbcreator='$this->mSchema'
1599 SQL;
1600 $res = $this->query($sql);
1601 $row = $this->fetchObject($res);
1602 $size = $row->size;
1603 return $size;
1604 }
1605
1606 /**
1607 * DELETE where the condition is a join
1608 * @param $delTable String: deleting from this table
1609 * @param $joinTable String: using data from this table
1610 * @param $delVar String: variable in deleteable table
1611 * @param $joinVar String: variable in data table
1612 * @param $conds Array: conditionals for join table
1613 * @param $fname String: function name for profiling
1614 */
1615 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds, $fname = "DatabaseIbm_db2::deleteJoin" ) {
1616 if ( !$conds ) {
1617 throw new DBUnexpectedError($this, 'Database::deleteJoin() called with empty $conds' );
1618 }
1619
1620 $delTable = $this->tableName( $delTable );
1621 $joinTable = $this->tableName( $joinTable );
1622 $sql = "DELETE FROM $delTable WHERE $delVar IN (SELECT $joinVar FROM $joinTable ";
1623 if ( $conds != '*' ) {
1624 $sql .= 'WHERE ' . $this->makeList( $conds, LIST_AND );
1625 }
1626 $sql .= ')';
1627
1628 $this->query( $sql, $fname );
1629 }
1630
1631 /**
1632 * Description is left as an exercise for the reader
1633 * @param $b Mixed: data to be encoded
1634 * @return IBM_DB2Blob
1635 */
1636 public function encodeBlob($b) {
1637 return new IBM_DB2Blob($b);
1638 }
1639
1640 /**
1641 * Description is left as an exercise for the reader
1642 * @param $b IBM_DB2Blob: data to be decoded
1643 * @return mixed
1644 */
1645 public function decodeBlob($b) {
1646 return $b->getData();
1647 }
1648
1649 /**
1650 * Convert into a list of string being concatenated
1651 * @param $stringList Array: strings that need to be joined together by the SQL engine
1652 * @return String: joined by the concatenation operator
1653 */
1654 public function buildConcat( $stringList ) {
1655 // || is equivalent to CONCAT
1656 // Sample query: VALUES 'foo' CONCAT 'bar' CONCAT 'baz'
1657 return implode( ' || ', $stringList );
1658 }
1659
1660 /**
1661 * Generates the SQL required to convert a DB2 timestamp into a Unix epoch
1662 * @param $column String: name of timestamp column
1663 * @return String: SQL code
1664 */
1665 public function extractUnixEpoch( $column ) {
1666 // TODO
1667 // see SpecialAncientpages
1668 }
1669
1670 ######################################
1671 # Prepared statements
1672 ######################################
1673
1674 /**
1675 * Intended to be compatible with the PEAR::DB wrapper functions.
1676 * http://pear.php.net/manual/en/package.database.db.intro-execute.php
1677 *
1678 * ? = scalar value, quoted as necessary
1679 * ! = raw SQL bit (a function for instance)
1680 * & = filename; reads the file and inserts as a blob
1681 * (we don't use this though...)
1682 * @param $sql String: SQL statement with appropriate markers
1683 * @param $func String: Name of the function, for profiling
1684 * @return resource a prepared DB2 SQL statement
1685 */
1686 public function prepare( $sql, $func = 'DB2::prepare' ) {
1687 $stmt = db2_prepare($this->mConn, $sql, $this->mStmtOptions);
1688 return $stmt;
1689 }
1690
1691 /**
1692 * Frees resources associated with a prepared statement
1693 * @return Boolean success or failure
1694 */
1695 public function freePrepared( $prepared ) {
1696 return db2_free_stmt($prepared);
1697 }
1698
1699 /**
1700 * Execute a prepared query with the various arguments
1701 * @param $prepared String: the prepared sql
1702 * @param $args Mixed: either an array here, or put scalars as varargs
1703 * @return Resource: results object
1704 */
1705 public function execute( $prepared, $args = null ) {
1706 if( !is_array( $args ) ) {
1707 # Pull the var args
1708 $args = func_get_args();
1709 array_shift( $args );
1710 }
1711 $res = db2_execute($prepared, $args);
1712 return $res;
1713 }
1714
1715 /**
1716 * Prepare & execute an SQL statement, quoting and inserting arguments
1717 * in the appropriate places.
1718 * @param $query String
1719 * @param $args ...
1720 */
1721 public function safeQuery( $query, $args = null ) {
1722 // copied verbatim from Database.php
1723 $prepared = $this->prepare( $query, 'DB2::safeQuery' );
1724 if( !is_array( $args ) ) {
1725 # Pull the var args
1726 $args = func_get_args();
1727 array_shift( $args );
1728 }
1729 $retval = $this->execute( $prepared, $args );
1730 $this->freePrepared( $prepared );
1731 return $retval;
1732 }
1733
1734 /**
1735 * For faking prepared SQL statements on DBs that don't support
1736 * it directly.
1737 * @param $preparedQuery String: a 'preparable' SQL statement
1738 * @param $args Array of arguments to fill it with
1739 * @return String: executable statement
1740 */
1741 public function fillPrepared( $preparedQuery, $args ) {
1742 reset( $args );
1743 $this->preparedArgs =& $args;
1744
1745 foreach ($args as $i => $arg) {
1746 db2_bind_param($preparedQuery, $i+1, $args[$i]);
1747 }
1748
1749 return $preparedQuery;
1750 }
1751
1752 /**
1753 * Switches module between regular and install modes
1754 */
1755 public function setMode($mode) {
1756 $old = $this->mMode;
1757 $this->mMode = $mode;
1758 return $old;
1759 }
1760
1761 /**
1762 * Bitwise negation of a column or value in SQL
1763 * Same as (~field) in C
1764 * @param $field String
1765 * @return String
1766 */
1767 function bitNot($field) {
1768 //expecting bit-fields smaller than 4bytes
1769 return 'BITNOT('.$field.')';
1770 }
1771
1772 /**
1773 * Bitwise AND of two columns or values in SQL
1774 * Same as (fieldLeft & fieldRight) in C
1775 * @param $fieldLeft String
1776 * @param $fieldRight String
1777 * @return String
1778 */
1779 function bitAnd($fieldLeft, $fieldRight) {
1780 return 'BITAND('.$fieldLeft.', '.$fieldRight.')';
1781 }
1782
1783 /**
1784 * Bitwise OR of two columns or values in SQL
1785 * Same as (fieldLeft | fieldRight) in C
1786 * @param $fieldLeft String
1787 * @param $fieldRight String
1788 * @return String
1789 */
1790 function bitOr($fieldLeft, $fieldRight) {
1791 return 'BITOR('.$fieldLeft.', '.$fieldRight.')';
1792 }
1793 }