-
Notifications
You must be signed in to change notification settings - Fork 12
/
EasyPDO.php
485 lines (455 loc) · 14.9 KB
/
EasyPDO.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
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
474
475
476
477
478
479
480
481
482
483
484
485
<?php
/**
* A PDO wrapper class for ease of coding
*
* @author ou
*/
class EasyPDO extends PDO
{
protected $_fetchMode = PDO::FETCH_ASSOC;
protected $_transactionCount = 0;
/**
* Class constructor
*
* @param string $dsn Connection DSN
* @param string $user Connection user name
* @param string $passwd Connection password
* @param string $options PDO driver options
* @return PDO
*/
public function __construct($dsn, $user='', $passwd='', $options=NULL)
{
$driver_options = array(
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
PDO::ATTR_PERSISTENT => true,
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'
);
if(!empty($options)) {
$driver_options = array_merge($driver_options, $options);
}
parent::__construct($dsn, $user, $passwd, $driver_options);
}
/**
* Prepare and returns a PDOStatement
*
* @param string $sql SQL statement
* @param array $bind parameters. A single value or an array of values
* @return PDOStatement
*/
private function _prepare($sql, $bind = array())
{
$stmt = $this->prepare($sql);
if (!$stmt) {
$errorInfo = $this->errorInfo();
throw new PDOException("Database error [{$errorInfo[0]}]: {$errorInfo[2]}, driver error code is $errorInfo[1]");
}
if(!is_array($bind)) {
$bind = empty($bind) ? array() : array($bind);
}
if (!$stmt->execute($bind) || $stmt->errorCode() != '00000') {
$errorInfo = $stmt->errorInfo();
throw new PDOException("Database error [{$errorInfo[0]}]: {$errorInfo[2]}, driver error code is $errorInfo[1]");
}
return $stmt;
}
/**
* Execute sql and returns number of effected rows
*
* Should be used for query which doesn't return resultset
*
* @param string $sql SQL statement
* @param array $bind parameters. A single value or an array of values
* @return integer Number of effected rows
*/
public function run($sql, $bind = array())
{
$stmt = $this->_prepare($sql, $bind);
return $stmt->rowCount();
}
/**
* set fetch mode for PDO
*
* @param string $fetchMode PDO fetch mode
* @return PDO
*/
public function setFetchMode($fetchMode)
{
$this->_fetchMode = $fetchMode;
return $this;
}
/**
* get where expression (if array, convert to sting)
*
* @param string $where where string or array
* @param array $andOr AND or OR
* @return string where string
*/
public function where($where, $andOr = 'AND')
{
if(is_array($where)) {
$tmp = array();
foreach($where as $k => $v) {
$tmp[] = $k . '=' . $this->quote($v);
}
return '(' . implode(" $andOr ", $tmp) . ')';
}
return $where;
}
/**
* select records from a table
*
* @param string $table table name
* @param string $fields fields list
* @param string $where where string
* @param array $bind parameters. A single value or an array of values
* @param string $order order string
* @param string $limit limit string (MySQL is "[offset,] row_count")
* @return array
*/
public function select($table, $fields = "*", $where = "", $bind = array(), $order = NULL, $limit = NULL)
{
$sql = "SELECT " . $fields . " FROM " . $table;
if(!empty($where)) {
$where = $this->where($where);
$sql .= " WHERE " . $where;
}
if(!empty($order)) {
$sql .= " ORDER BY " . $order;
}
if(!empty($limit)) {
$sql .= " LIMIT " . $limit;
}
$stmt = $this->_prepare($sql, $bind);
return $stmt->fetchAll($this->_fetchMode);
}
/**
* insert a record to a table
*
* @param string $table table name
* @param array $data data array
* @return integer Number of effected rows
*/
public function insert($table, $data)
{
$fieldNames = array_keys($data);
$sql = "INSERT INTO `$table` (" . implode($fieldNames, ", ") . ") VALUES (:" . implode($fieldNames, ", :") . ");";
$bind = array();
foreach($fieldNames as $field) {
$bind[":$field"] = $data[$field];
}
return $this->run($sql, $bind);
}
/**
* insert multiple records to a table
*
* @param string $table table name
* @param array $fieldNames fields array
* @param array $data data array
* @param bool $replace replace flag
* @return integer Number of effected rows
*/
public function bulkInsert($table, $fieldNames, $data, $replace = false)
{
if(empty($table) || empty($fieldNames) || empty($data)) {
return 0;
}
$fieldCount = count($fieldNames);
$valueList = '';
foreach ($data as $values) {
$dataCount = count($values);
if($dataCount != $fieldCount) {
if($dataCount > $fieldCount) {
$values = array_slice($values, 0, $fieldCount);
} else {
throw new PDOException("Number of columns and values not match!");
}
}
foreach ($values as &$val) {
if (is_null($val)) {
$val = 'NULL';
} elseif (is_string($val)) {
$val = $this->quote($val);
} elseif (is_object($val) || is_array($val)) {
$val = $this->quote(json_encode($val));
}
}
$valueList .= '(' . implode(',', $values) . '),';
}
$valueList = rtrim($valueList, ',');
$insert = $replace ? 'REPLACE' : 'INSERT';
$sql = "$insert INTO `$table` (" . implode(', ', $fieldNames) . ") VALUES " . $valueList . ";";
return $this->run($sql);
}
/**
* update records for one table
*
* @param string $table table name
* @param array $data data array
* @param string $where where string
* @param array $bind parameters. A single value or an array of values
* @return integer Number of effected rows
*/
public function update($table, $data, $where="", $bind=array())
{
$sql = "UPDATE `$table` SET ";
$comma = '';
if(!is_array($bind)) {
$bind = empty($bind) ? array() : array($bind);
}
foreach($data as $k => $v) {
$sql .= $comma . $k . " = :upd_" . $k;
$comma = ', ';
$bind[":upd_" . $k] = $v;
}
if(!empty($where)) {
$where = $this->where($where);
$sql .= " WHERE " . $where;
}
return $this->run($sql, $bind);
}
/**
* delete records from table
*
* @param string $table table name
* @param string $where where string
* @param array $bind parameters. A single value or an array of values
* @return integer Number of effected rows
*/
public function delete($table, $where, $bind = array())
{
$sql = "DELETE FROM `$table`";
if(!empty($where)) {
$where = $this->where($where);
$sql .= " WHERE " . $where;
}
return $this->run($sql, $bind);
}
/**
* truncate table
*
* @param string $table table name
* @return integer Number of effected rows
*/
public function truncate($table)
{
$sql = "TRUNCATE TABLE `$table`";
return $this->run($sql);
}
/**
* save data to table (update is exists, else insert)
*
* @param string $table table name
* @param array $data data array
* @param mixed $where SQL WHERE string or key/value array
* @param array $bind parameters. A single value or an array of values
* @return integer Number of effected rows
*/
public function save($table, $data, $where = "", $bind = array())
{
$count = 0;
if(!empty($where)) {
$where = $this->where($where);
$count = $this->fetchOne("SELECT COUNT(1) FROM $table WHERE $where", $bind);
}
if($count == 0) {
return $this->insert($table, $data);
} else {
return $this->update($table, $data, $where, $bind);
}
}
/**
* Execute sql and returns a single value
*
* @param string $sql SQL statement
* @param array $bind A single value or an array of values
* @return mixed Result value
*/
public function fetchOne($sql, $bind = array())
{
$stmt = $this->_prepare($sql, $bind);
return $stmt->fetchColumn(0);
}
/**
* Execute sql and returns the first row
*
* @param string $sql SQL statement
* @param array $bind A single value or an array of values
* @return array A result row
*/
public function fetchRow($sql, $bind = array())
{
$stmt = $this->_prepare($sql, $bind);
return $stmt->fetch($this->_fetchMode);
}
/**
* Execute sql and returns row(s) as 2D array
*
* @param string $sql SQL statement
* @param array $bind A single value or an array of values
* @return array Result rows
*/
public function fetchAll($sql, $bind = array())
{
$stmt = $this->_prepare($sql, $bind);
return $stmt->fetchAll($this->_fetchMode);
}
/**
* Execute sql and returns row(s) as 2D array, array key is first column's values
*
* @param string $sql SQL statement
* @param array $bind A single value or an array of values
* @return array Result rows
*/
public function fetchAssoc($sql, $bind = array())
{
$stmt = $this->_prepare($sql, $bind);
$records = $stmt->fetchAll(PDO::FETCH_ASSOC);
$result = array();
if(!empty($records)) {
$k0 = key($records[0]);
foreach($records as $rec) {
$result[$rec[$k0]] = $rec;
}
}
return $result;
}
/**
* Execute sql and returns row(s) as 3D array, array key is first column's values
*
* @param string $sql SQL statement
* @param array $bind A single value or an array of values
* @return array Result rows
*/
public function fetchAssocArr($sql, $bind = array())
{
$stmt = $this->_prepare($sql, $bind);
$records = $stmt->fetchAll(PDO::FETCH_ASSOC);
$result = array();
if(!empty($records)) {
$k0 = key($records[0]);
foreach($records as $rec) {
$result[$rec[$k0]][] = $rec;
}
}
return $result;
}
/**
* Execute sql and returns a key/value pairs array
*
* @param string $sql SQL statement
* @param array $bind A single value or an array of values
* @return array Result rows
*/
public function fetchPairs($sql, $bind = array())
{
$stmt = $this->_prepare($sql, $bind);
return $stmt->fetchAll(PDO::FETCH_KEY_PAIR);
}
/**
* Execute sql and returns an values array of first column
*
* @param string $sql SQL statement
* @param array $bind A single value or an array of values
* @return array Result rows
*/
public function fetchCol($sql, $bind = array())
{
$stmt = $this->_prepare($sql, $bind);
$records = $stmt->fetchAll(PDO::FETCH_ASSOC);
$result = array();
if(!empty($records)) {
$k0 = key($records[0]);
foreach($records as $rec) {
$result[] = $rec[$k0];
}
}
return $result;
}
/**
* create table
*
* @param string $table table name
* @param array $fieldNames field name array
* @param array $fieldTypes field type array
* @param array $defaultValues field default value array
* @param array $fieldComments field comment array
* @param string $primaryKey primary key
* @param array $indexes index array
* @param string $engine storage engine
* @param string $charset default charset
* @return integer Number of effected rows
*/
public function createTable($table, $fieldNames, $fieldTypes, $defaultValues, $fieldComments, $primaryKey = '', $indexes = array(), $dbEngine = 'InnoDB', $charset='utf8')
{
$sql = "CREATE TABLE IF NOT EXISTS `$table` (";
foreach($fieldNames as $i => $fieldName) {
$sql .= "`$fieldName` " . $fieldTypes[$i];
if(!empty($defaultValues[$i])) {
$sql .= " DEFAULT " . $defaultValues[$i];
}
if(!empty($fieldComments[$i])) {
$sql .= " COMMENT '" . $fieldComments[$i] . "'";
}
$sql .= ", ";
}
if(empty($primaryKey)) {
$primaryKey = $fieldNames[0];
}
$sql .= " PRIMARY KEY $primaryKey";
foreach($indexes as $i => $index) {
$sql .= ",INDEX index_{$i} $index";
}
$sql .= ") ENGINE={$dbEngine} DEFAULT CHARSET={$charset};";
return $this->run($sql);
}
/**
* drop table
*
* @param string $table table name
*/
public function dropTable($table)
{
$sql = "DROP TABLE IF EXISTS `$table`;";
return $this->run($sql);
}
/**
* begin transaction
*/
public function beginTransaction()
{
if (!$this->_transactionCount++) {
return parent::beginTransaction();
}
$this->exec('SAVEPOINT trans'.$this->_transactionCount);
return $this->_transactionCount >= 0;
}
/**
* commit transaction
*/
public function commit()
{
if (!--$this->_transactionCount) {
return parent::commit();
}
return $this->_transactionCount >= 0;
}
/**
* rollback transaction
*/
public function rollback()
{
if (--$this->_transactionCount) {
$this->exec('ROLLBACK TO trans'.($this->_transactionCount + 1));
return true;
}
return parent::rollback();
}
/**
* has transaction ?
*/
public function hasTransaction()
{
return $this->_transactionCount > 0;
}
}