forked from taq/pdooci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdooci.php
411 lines (385 loc) · 9.64 KB
/
pdooci.php
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
<?php
/**
* PDOCI
*
* PHP version 5.3
*
* @category PDOOCI
* @package PDOOCI
* @author Eustáquio Rangel <eustaquiorangel@gmail.com>
* @license http://www.gnu.org/licenses/gpl-2.0.html GPLv2
* @link http://github.com/taq/pdooci
*/
namespace PDOOCI;
require_once dirname(__FILE__)."/statement.php";
/**
* Main class of PDOCI
*
* PHP version 5.3
*
* @category Connection
* @package PDOOCI
* @author Eustáquio Rangel <eustaquiorangel@gmail.com>
* @license http://www.gnu.org/licenses/gpl-2.0.html GPLv2
* @link http://github.com/taq/pdooci
*/
class PDO extends \PDO
{
private $_con = null;
private $_autocommit = true;
private $_last_error = null;
private $_charset = null;
/**
* Class constructor
*
* @param string $data the connection string
* @param string $username user name
* @param string $password password
* @param string $options options to send to the connection
*
* @return PDO object
*/
public function __construct($data, $username, $password, $options=null)
{
if (!function_exists("\oci_parse")) {
throw new \PDOException("No support for Oracle, please install the OCI driver");
}
// find charset
$charset = null;
$tokens = preg_split('/;/', $data);
$data = $tokens[0];
$charset = $this->_getCharset($tokens);
try {
if (!is_null($options) && array_key_exists(\PDO::ATTR_PERSISTENT, $options)) {
$this->_con = \oci_pconnect($username, $password, $data, $charset);
$this->setError();
} else {
$this->_con = \oci_connect($username, $password, $data, $charset);
$this->setError();
}
if (!$this->_con) {
$error = oci_error();
throw new \Exception($error['code'].': '.$error['message']);
}
} catch (\Exception $exception) {
throw new \PDOException($exception->getMessage());
}
return $this;
}
/**
* Return the charset
*
* @return mixed charset
*/
public function getCharset()
{
return $this->_charset;
}
/**
* Find the charset
*
* @param string $charset charset
*
* @return charset
*/
private function _getCharset($charset=null)
{
if (!$charset) {
$langs = array_filter(array(getenv("NLS_LANG")), "strlen");
return array_shift($langs);
}
$expr = '/^(charset=)(\w+)$/';
$tokens = array_filter(
$charset, function ($token) use ($expr) {
return preg_match($expr, $token, $matches);
}
);
if (sizeof($tokens)>0) {
preg_match($expr, array_shift($tokens), $matches);
$this->_charset = $matches[2];
} else {
$this->_charset = null;
}
return $this->_charset;
}
/**
* Return the connection
*
* @return connection handle
*/
public function getConnection()
{
return $this->_con;
}
/**
* Execute a query
*
* @param string $statement sql query
* @param int $mode PDO query() mode
* @param int $p1 PDO query() first parameter
* @param int $p2 PDO query() second parameter
*
* @return PDOOCIStatement
*/
public function query($statement, $mode=null, $p1=null, $p2=null)
{
// TODO: use mode and parameters
$stmt = null;
try {
$stmt = new PDOOCIStatement($this, $statement);
$stmt->execute();
$this->setError();
return $stmt;
} catch (Exception $e) {
throw new \PDOException($e->getMessage());
}
return $stmt;
}
/**
* Execute query
*
* @param string $sql query
*
* @return number of affected rows
*/
public function exec($sql)
{
try {
$stmt = $this->query($sql);
$rows = $stmt->rowCount();
$stmt->closeCursor();
return $rows;
} catch (Exception $e) {
throw new \PDOException($e->getMessage());
}
return $this;
}
/**
* Set an attribute
*
* @param int $attr attribute
* @param mixed $value value
*
* @return boolean if set was ok
*/
public function setAttribute($attr, $value)
{
switch($attr)
{
case \PDO::ATTR_AUTOCOMMIT:
$this->_autocommit = (is_bool($value) && $value) || in_array(strtolower($value), array("on", "true"));
return;
}
}
/**
* Return an attribute
*
* @param int $attr attribute
*
* @return mixed attribute value
*/
public function getAttribute($attr)
{
switch($attr)
{
case \PDO::ATTR_AUTOCOMMIT:
return $this->_autocommit;
case \PDO::ATTR_DRIVER_NAME:
return 'oci';
}
return null;
}
/**
* Return the auto commit flag
*
* @return boolean auto commit flag
*/
public function getAutoCommit()
{
return $this->_autocommit;
}
/**
* Commit connection
*
* @return boolean if commit was executed
*/
public function commit()
{
\oci_commit($this->_con);
$this->setError();
}
/**
* Rollback connection
*
* @return boolean if rollback was executed
*/
public function rollBack()
{
\oci_rollback($this->_con);
$this->setError();
}
/**
* Start a transaction, setting auto commit to off
*
* @return null
*/
public function beginTransaction()
{
$this->setAttribute(\PDO::ATTR_AUTOCOMMIT, false);
}
/**
* Prepare a statement
*
* @param string $query for statement
* @param mixed $options for driver
*
* @return PDOOCIStatement
*/
public function prepare($query, $options=null)
{
$stmt = null;
try {
$stmt = new PDOOCIStatement($this, $query);
} catch (Exception $e) {
throw new \PDOException($e->getMessage());
}
return $stmt;
}
/**
* Sets the last error found
*
* @param mixed $obj optional object to extract error from
*
* @return null
*/
public function setError($obj=null)
{
$obj = $obj ? $obj : $this->_con;
if (!is_resource($obj)) {
return;
}
$error = \oci_error($obj);
if (!$error) {
return null;
}
$this->_last_error = $error;
}
/**
* Returns the last error found
*
* @return int error code
*/
public function errorCode()
{
if (!$this->_last_error) {
return null;
}
return intval($this->_last_error["code"]);
}
/**
* Returns the last error info
*
* @return array error info
*/
public function errorInfo()
{
if (!$this->_last_error) {
return null;
}
return array($this->_last_error["code"],
$this->_last_error["code"],
$this->_last_error["message"]);
}
/**
* Close connection
*
* @return null
*/
public function close()
{
if (is_null($this->_con)) {
return;
}
\oci_close($this->_con);
$this->_con = null;
}
/**
* Trigger stupid errors who should be exceptions
*
* @param int $errno error number
* @param string $errstr error message
* @param mixed $errfile error file
* @param int $errline error line
*
* @return null
*/
public function errorHandler($errno, $errstr, $errfile, $errline)
{
preg_match('/(ORA-)(\d+)/', $errstr, $ora_error);
if ($ora_error) {
$this->_last_error = intval($ora_error[2]);
} else {
$this->setError($this->_con);
}
}
/**
* Return available drivers
* Will insert the OCI driver on the list, if not exist
*
* @return array with drivers
*/
public static function getAvailableDrivers()
{
$drivers = \PDO::getAvailableDrivers();
if (!in_array("oci", $drivers)) {
array_push($drivers, "oci");
}
return $drivers;
}
/**
* Return if is on a transaction
*
* @return boolean on a transaction
*/
public function inTransaction()
{
return !$this->_autocommit;
}
/**
* Quote a string
*
* @param string $string to be quoted
* @param int $type parameter type
*
* @return string quoted
*/
public function quote($string, $type=null)
{
$string = preg_replace('/\'/', "''", $string);
$string = "'$string'";
return $string;
}
/**
* Return the last inserted id
* If the sequence name is not sent, throws an exception
*
* @param string $sequence name
*
* @return mixed last id
*/
public function lastInsertId($sequence=null)
{
if (!$sequence) {
throw new \PDOException("SQLSTATE[IM001]: Driver does not support this function: driver does not support getting attributes in system_requirements");
}
$id = 0;
try {
$stmt = $this->query("select $sequence.currval from dual");
$data = $stmt->fetch(\PDO::FETCH_ASSOC);
$id = intval($data["CURRVAL"]);
} catch (\PDOException $e) {
}
return $id;
}
}
?>