PdoQuery.class.php
5.6 KB
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
<?php
/**
* 数据库操作方法
*
* example:
* <pre>
*
* </pre>
*
* @name Util_Dao_Db_PdoQuery
* @version 40 (2009-3-4 上午10:42:16)
* @package Q.Dao.Mysql.Db
* @author peter.zyliu liuziyang@zadooo.com
* @since 1.0
*/
class Util_Dao_Db_PdoQuery extends Util_Dao_Db_Abstract
{
/**
* Sql语句
*
* @var String
*/
private $sql;
/**
* Pdo对象
*
* @var Zend_Db::factory
*/
private $pdo;
/**
* 参数
*
* @var Array
*/
private $params;
/**
* 初始化
*
* @param Zend_Db::factory $pdo
* @param String $sql
* @param Array $params
*/
public function __construct($pdo, $sql, $params)
{
$this->pdo = $pdo;
$this->sql = trim($sql);
$this->params = $params;
}
/**
* 请求执行
*
*/
public function execute($method = null)
{
$this->stmt = $this->pdo->prepare($this->sql);
$this->bindParams($this->params);
$exec = $this->stmt->execute();
if (!empty($method))
{
return $exec;
}
return $this->stmt;
}
/**
* 取回结果集中所有字段的值,作为连续数组返回
*
* @return array
*/
public function fetchAll()
{
$this->check($this->sql, 'select');
return $this->execute()->fetchAll();
}
/**
* 取回结果集中所有字段的值,作为关联数组返回
* 第一个字段作为码
*
* @return array
*/
public function fetchAssoc()
{
$this->check($this->sql, 'select');
$data = array();
$original = $this->execute()->fetchAll(PDO::FETCH_ASSOC);
foreach ($original as $val)
{
$tmp = array_values($val);
$data[$tmp[0]] = $val;
}
return $data;
}
/**
* 取回所有结果行的第一个字段名
*
*
* @return array
*/
public function fetchCol()
{
$this->check($this->sql, 'select');
return $this->execute()->fetchAll(PDO::FETCH_COLUMN, 0);
}
/**
* 只取回第一个字段值
*
* @param Integer $columnNumber
* @return mixed
*/
public function fetchOne($columnNumber = 0)
{
$this->check($this->sql, 'select');
return $this->execute()->fetchColumn($columnNumber);
}
/**
* 取回一个相关数组,第一个字段值为码
*
*
* @return array
*/
public function fetchPairs()
{
$this->check($this->sql, 'select');
if (version_compare(PHP_VERSION, '5.2.6', '==') === true)
{
return $this->_fetchPairs();
}
return $this->execute()->fetchAll(PDO::FETCH_KEY_PAIR);
}
/**
* 只取回结果集的第一行
*
*
* @return array
*/
public function fetchRow()
{
$this->check($this->sql, 'select');
return $this->execute()->fetch();
}
/**
* 返回第一行 数据使用对象表示
*
* @return array
*/
public function fetchObject()
{
$this->check($this->sql, 'select');
return $this->execute()->fetchObject();
}
/**
* 取出所有数据并放入数组中,其中每条数据使用对象表示
*
* @return array
*/
public function fetchAllObject()
{
$this->check($this->sql, 'select');
return $this->execute()->fetchAll(PDO::FETCH_OBJ);
}
/**
* Enter description here...
*
* @return unknown
*/
public function quoteInto()
{
return $this->pdo->quote($this->sql, $this->params);
}
/**
* 插入
*
* @return Util_Dao_Db_FinaleExec()
*/
public function insert()
{
$this->check($this->sql, __FUNCTION__);
$retval = $this->execute(__FUNCTION__);
return new Util_Dao_Db_FinaleExec($this->pdo, $this->stmt, $retval);
}
/**
* 更新
*
* @return Util_Dao_Db_FinaleExec()
*/
public function update()
{
$this->check($this->sql, __FUNCTION__);
$retval = $this->execute(__FUNCTION__);
return new Util_Dao_Db_FinaleExec($this->pdo, $this->stmt, $retval);
}
/**
* 删除
*
* @return Util_Dao_Db_FinaleExec()
*/
public function delete()
{
$this->check($this->sql, __FUNCTION__);
$retval = $this->execute(__FUNCTION__);
return new Util_Dao_Db_FinaleExec($this->pdo, $this->stmt, $retval);
}
/**
* 获取Sql
*
* @return String
*/
public function getSql()
{
$asSql = '';
if (strstr($this->sql, ':'))
{
$matches_s = array();
foreach ($this->params as $key => $val)
{
if (is_string($val))
{
$val = "'{$val}'";
}
$matches_s[':' . $key] = $val;
}
$asSql = strtr($this->sql, $matches_s);
}
else
{
$asSql = $this->sql;
foreach ($this->params as $val)
{
$strPos = strpos($asSql, '?');
if (is_string($val))
{
$val = "'{$val}'";
}
$asSql = substr_replace($asSql, $val, $strPos, 1);
}
}
return $asSql;
}
/**
* 执行mysql系统命令
*
*/
public function command()
{
$this->check($this->sql, __FUNCTION__);
$this->pdo->query($this->sql);
}
/**
* 关闭数据库
*
*/
public function close()
{
$this->stmt->closeCursor();
}
/**
* 数量列
*
* @return Integer
*/
public function columnCount()
{
return $this->execute()->columnCount();
}
/**
* Debug 输出
*
* @return Array
*/
public function debugDumpParams()
{
return $this->execute()->debugDumpParams();
}
/**
* 下一个结果集合
* 用于存储过程多个结果集
*
*/
public function nextRowset()
{
return $this->stmt->nextRowset();
}
/**
* 重组Pairs
*
* @return Array
*/
private function _fetchPairs()
{
$pairsData = array();
$allData = $this->execute()->fetchAll();
foreach ($allData as $v)
{
if (count($v) < 2)
{
throw new Util_Dao_Mysql_Exception('SQLSTATE[HY000]: General error: PDO::FETCH_KEY_PAIR fetch mode requires the result set to contain extactly 2 columns');
}
$indexKey = each($v);
$indexVal = each($v);
$pairsData[$indexKey['value']] = $indexVal['value'];
}
return $pairsData;
}
public function __destruct()
{
}
}