File: oci8.php

package info (click to toggle)
php4 4.0.3pl1-0potato3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 15,168 kB
  • ctags: 20,556
  • sloc: ansic: 155,237; php: 10,827; sh: 9,608; yacc: 1,874; lex: 1,742; makefile: 788; java: 424; awk: 359; cpp: 335; perl: 181; xml: 57
file content (473 lines) | stat: -rw-r--r-- 11,467 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
<?php
//
// +----------------------------------------------------------------------+
// | PHP version 4.0                                                      |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997, 1998, 1999, 2000 The PHP Group                   |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.02 of the PHP license,      |
// | that is bundled with this package in the file LICENSE, and is        |
// | available at through the world-wide-web at                           |
// | http://www.php.net/license/2_02.txt.                                 |
// | If you did not receive a copy of the PHP license and are unable to   |
// | obtain it through the world-wide-web, please send a note to          |
// | license@php.net so we can mail you a copy immediately.               |
// +----------------------------------------------------------------------+
// | Authors: James L. Pine <jlp@valinux.com>                             |
// |                                                                      |
// +----------------------------------------------------------------------+
//
// Database independent query interface definition for PHP's Oracle 8
// call-interface extension.
//

//
// be aware...  OCIError() only appears to return anything when given a
// statement, so functions return the generic DB_ERROR instead of more
// useful errors that have to do with feedback from the database.
//


require_once 'DB/common.php';

class DB_oci8 extends DB_common {
    // {{{ properties

	var $connection;
	var $phptype, $dbsyntax;
	var $select_query = array();
	var $prepare_types = array();
	var $autoCommit = 1;
	var $last_stmt = false;

    // }}}

    // {{{ constructor

	function DB_oci8() {
		$this->phptype = 'oci8';
		$this->dbsyntax = 'oci8';
		$this->features = array(
			'prepare' => false,
			'pconnect' => true,
			'transactions' => true
		);
		$this->errorcode_map = array();
	}

    // }}}

    // {{{ connect()

	/**
	 * Connect to a database and log in as the specified user.
	 *
	 * @param $dsn the data source name (see DB::parseDSN for syntax)
	 * @param $persistent (optional) whether the connection should
	 *        be persistent
	 *
	 * @return int DB_OK on success, a DB error code on failure
	 */
	function connect(&$dsn, $persistent = false) {
		if (is_array($dsn)) {
			$dsninfo = &$dsn;
		} else {
			$dsninfo = DB::parseDSN($dsn);
		}
		if (!$dsninfo || !$dsninfo['phptype']) {
			return $this->raiseError();
		}
		$user = $dsninfo['username'];
		$pw = $dsninfo['password'];
		$hostspec = $dsninfo['hostspec'];

		$connect_function = $persistent ? 'OCIPLogon' : 'OCILogon';
		if ($user && $pw && $hostspec) {
			$conn = $connect_function($user,$pw,$hostspec);
		} elseif ($user && $pw) {
			$conn = $connect_function($user,$pw);
		} else {
			$conn = false;
		}
		if ($conn == false) {
			return $this->raiseError();
		}
		$this->connection = $conn;
		return DB_OK;
	}

    // }}}
    // {{{ disconnect()

	/**
	 * Log out and disconnect from the database.
	 *
	 * @return bool TRUE on success, FALSE if not connected.
	 */
	function disconnect() {
		return OCILogOff($this->connection);
	}

    // }}}
    // {{{ query()


	/**
	 * Send a query to the database and return the results as a DB_result object.
	 *
	 * @param $query the SQL query
	 *
	 * @return object a DB_result object on success, a DB error code
	 * on failure
	 */
	function &query($query) {
		$this->last_query = $query;
		$result = OCIParse($this->connection, $query);
		if (!$result) {
			return $this->raiseError();
		}
		if ($this->autoCommit) {
			$success=OCIExecute($result,OCI_COMMIT_ON_SUCCESS);
		}
		else {
			$success=OCIExecute($result,OCI_DEFAULT);
		}
		if (!$success) {
			return $this->raiseError();
		}
		$this->last_stmt=$result;
		// Determine which queries that should return data, and which
		// should return an error code only.
		if (preg_match('/(SELECT|SHOW)/i', $query)) {
			$resultObj = new DB_result($this, $result);
			return $resultObj;
		} else {
			return DB_OK;
		}
	}

	// }}}
    // {{{ simpleQuery()

	/**
	 * Send a query to oracle and return the results as an oci8 resource
	 * identifier.
	 *
	 * @param $query the SQL query
	 *
	 * @return int returns a valid oci8 result for successful SELECT
	 * queries, DB_OK for other successful queries.  A DB error code
	 * is returned on failure.
	 */
	function simpleQuery($query) {
		$this->last_query = $query;
		$result = OCIParse($this->connection, $query);
		if (!$result) {
			return $this->raiseError();
		}
		if ($this->autoCommit) {
			$success=OCIExecute($result,OCI_COMMIT_ON_SUCCESS);
		}
		else {
			$success=OCIExecute($result,OCI_DEFAULT);
		}
		if (!$success) {
			return $this->raiseError();
		}
		$this->last_stmt=$result;
		// Determine which queries that should return data, and which
		// should return an error code only.
		if (preg_match('/(SELECT|SHOW)/i', $query)) {
			return $result;
		} else {
			return DB_OK;
		}
	}

	// }}}
    // {{{ fetchRow()

	/**
	 * Fetch a row and return as array.
	 *
	 * @param $result oci8 result identifier
	 * @param $fetchmode how the resulting array should be indexed
	 *
	 * @return int an array on success, a DB error code on failure, NULL
	 *             if there is no more data
	 */
	function &fetchRow($result, $fetchmode = DB_FETCHMODE_DEFAULT) {
		if ($fetchmode == DB_FETCHMODE_DEFAULT) {
			$fetchmode = $this->fetchmode;
		}
		if ($fetchmode & DB_FETCHMODE_ASSOC) {
			$moredata=OCIFetchInto($result,$row,OCI_ASSOC+OCI_RETURN_NULLS+OCI_RETURN_LOBS);
		} else {
			$moredata=OCIFetchInto($result,$row,OCI_RETURN_NULLS+OCI_RETURN_LOBS);
		}
		if (!$row) {
			return $this->raiseError();
		}
		if ($moredata==NULL) {
			return NULL;
		}
		return $row;
	}

	// }}}
    // {{{ fetchInto()

	/**
	 * Fetch a row and insert the data into an existing array.
	 *
	 * @param $result oci8 result identifier
	 * @param $arr (reference) array where data from the row is stored
	 * @param $fetchmode how the array data should be indexed
	 *
	 * @return int DB_OK on success, a DB error code on failure
	 */
	function fetchInto($result, &$arr, $fetchmode = DB_FETCHMODE_DEFAULT) {
		if ($fetchmode == DB_FETCHMODE_DEFAULT) {
			$fetchmode = $this->fetchmode;
		}
		if ($fetchmode & DB_FETCHMODE_ASSOC) {
			$moredata=OCIFetchInto($result,$arr,OCI_ASSOC+OCI_RETURN_NULLS+OCI_RETURN_LOBS);
		} else {
			$moredata=OCIFetchInto($result,$arr,OCI_RETURN_NULLS+OCI_RETURN_LOBS);
		}
		if (!($arr && $moredata)) {
			return $this->raiseError();
		}
		return DB_OK;
	}

	// }}}
    // {{{ freeResult()

	/**
	 * Free the internal resources associated with $result.
	 *
	 * @param $result oci8 result identifier or DB statement identifier
	 *
	 * @return bool TRUE on success, FALSE if $result is invalid
	 */
	function freeResult($result) {
		if (is_resource($result)) {
			return OCIFreeStatement($result);
		}
		if (!isset($this->prepare_tokens[$result])) {
			return false;
		}
		unset($this->prepare_tokens[$result]);
		unset($this->prepare_types[$result]);
		return true; 
	}

	// }}}
    // {{{ numCols()

	/**
	 * Get the number of columns in a result set.
	 *
	 * @param $result oci8 result identifier
	 *
	 * @return int the number of columns per row in $result
	 */
	function numCols($result) {
		$cols = OCINumCols($result);
		if (!$cols) {
			return $this->raiseError();
		}
		return $cols;
	}

    // }}}
    // {{{ errorNative()

	/**
	 * Get the native error code of the last error (if any) that occured
	 * on the current connection.  This does not work, as OCIError does
	 * not work unless given a statement.  If OCIError does return
	 * something, so will this.
	 *
	 * @return int native oci8 error code
	 */
	function errorNative() {
		$error=OCIError($this->connection);
		if (is_array($error)) {
			return $error['code'];
		}
		return false;
	}

    // }}}
    // {{{ prepare()

	/**
	 * Prepares a query for multiple execution with execute().  With
	 * oci8, this is emulated.
	 * @param $query query to be prepared
	 *
	 * @return DB statement resource
	 */
	function prepare($query) {
		$tokens = split('[\&\?]', $query);
		$token = 0;
		$types = array();
		for ($i = 0; $i < strlen($query); $i++) {
			switch ($query[$i]) {
				case '?':
					$types[$token++] = DB_PARAM_SCALAR;
					break;
				case '&':
					$types[$token++] = DB_PARAM_OPAQUE;
					break;
			}
		}
		$binds=sizeof($tokens)-1;
		for ($i=0;$i<$binds;$i++) {
			$newquery.=$tokens[$i].":bind".$i;
		}
		$newquery.=$tokens[$i];
		$this->last_query = $query;
		$stmt=OCIParse($this->connection,$newquery);
		$this->prepare_types[$stmt] = $types;
		$this->select_query[$stmt] = preg_match('/(SELECT|SHOW)/i', $newquery);
		return $stmt;
	}

    // }}}
    // {{{ execute()

	/**
	 * Executes a DB statement prepared with prepare().
	 *
	 * @param $stmt a DB statement resource (returned from prepare())
	 * @param $data data to be used in execution of the statement
	 *
	 * @return int returns an oci8 result resource for successful
	 * SELECT queries, DB_OK for other successful queries.  A DB error
	 * code is returned on failure.
	 */
	function execute($stmt, $data = false) {
		$types=&$this->prepare_types[$stmt];
		if (($size=sizeof($types))!=sizeof($data)) {
			return $this->raiseError();
		}
		for ($i=0;$i<$size;$i++) {
			if (is_array($data)) {
				$pdata[$i]=$data[$i];
			}
			else {
				$pdata[$i]=$data;
			}
			if ($types[$i]==DB_PARAM_OPAQUE) {
				$fp = fopen($pdata[$i], "r");
				$pdata = '';
				if ($fp) {
					while (($buf = fread($fp, 4096)) != false) {
						$pdata[$i] .= $buf;
					}
				}
			}
			if (!OCIBindByName($stmt,":bind".$i,$pdata[$i],-1)) {
				return $this->raiseError();
			}
		}
		if ($this->autoCommit) {
			$success=OCIExecute($stmt,OCI_COMMIT_ON_SUCCESS);
		}
		else {
			$success=OCIExecute($stmt,OCI_DEFAULT);
		}
		if (!$success) {
			return $this->raiseError();
		}
		$this->last_stmt=$stmt;
		if ($this->select_query[$stmt]) {
			return $stmt;
		}
		else {
			return $DB_OK;
		}
	}

    // }}}
    // {{{ autoCommit()

	/**
	 * Enable/disable automatic commits
	 * 
	 * @param $onoff true/false whether to autocommit
	 */
	function autoCommit($onoff = false) {
		if (!$onoff) {
			$this->autoCommit=0;
		}
		else {
			$this->autoCommit=1;
		}
		return DB_OK;
	}

    // }}}
    // {{{ commit()

	/**
	 * Commit transactions on the current connection
	 *
	 * @return DB_ERROR or DB_OK
	 */
	function commit() {
		$result = OCICommit($this->connection);
		if (!$result) {
			return $this->raiseError();
		}
		return DB_OK;
	}

    // }}}
    // {{{ rollback()

	/**
	 * Roll back all uncommitted transactions on the current connection.
	 *
	 * @return DB_ERROR or DB_OK
	 */
	function rollback() {
		$result = OCIRollback($this->connection);
		if (!$result) {
			return $this->raiseError();
		}
		return DB_OK;
	}

    // }}}
    // {{{ affectedRows()

	/**
	 * Gets the number of rows affected by the last query.
	 * if the last query was a select, returns 0.
	 *
	 * @return number of rows affected by the last query or DB_ERROR
	 */
	function affectedRows() {
		if ($this->last_stmt === false) {
			return $this->raiseError();
		}
		$result = OCIRowCount($this->last_stmt);
		if ($result === false) {
 			return $this->raiseError();
		}
		return $result;
	}

    // }}}

}

// Local variables:
// tab-width: 4
// c-basic-offset: 4
// End:
?>