Statement.php
5.43 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
<?php
/**
* Created by PhpStorm.
* User: liuziyang
* Date: 13-12-19
* Time: 15:57
*/
class Q_Db_Adapter_Pdo_Statement
{
/**
* pdo数据类型
* @var Array
*/
protected $paramType = array(
'integer' => PDO::PARAM_INT,
'int' => PDO::PARAM_INT,
'boolean' => PDO::PARAM_BOOL,
'bool' => PDO::PARAM_BOOL,
'string' => PDO::PARAM_STR,
'null' => PDO::PARAM_NULL,
'object' => PDO::PARAM_LOB,
'float' => PDO::PARAM_STR,
'double' => PDO::PARAM_STR
);
/**
* @var PDOStatement
*/
private $statement;
public function __construct(&$statement)
{
$this->statement = $statement;
}
/**
* 取出所有数据并放入数组中,其中每条数据使用对象表示
*
* @param string $sqlId sql定义ID
* @param array $parameterMap 参数集
* @param array $replaceMap 替换列表
* @return Array
*/
public function fetchAllObject()
{
return $this->statement->fetchAll(PDO::FETCH_OBJ);
}
/**
* 返回第一行 数据使用对象表示
*
* @param string $sqlId sql定义ID
* @param array $parameterMap 参数集
* @param array $replaceMap 替换列表
* @return Array
*/
public function fetchObject($class_name = "stdClass", array $ctor_args = null)
{
return $this->statement->fetchObject($class_name, $ctor_args);
}
public function fetch($fetch_style = null, $cursor_orientation = PDO::FETCH_ORI_NEXT, $cursor_offset = 0)
{
return $this->statement->fetch($fetch_style, $cursor_orientation, $cursor_offset);
}
/**
* 只取回结果集的第一行
*
* @param string $sqlId sql定义ID
* @param array $parameterMap 参数集
* @param array $replaceMap 替换列表
* @return Array
*/
public function fetchRow()
{
return $this->statement->fetch(PDO::FETCH_ASSOC);
}
/**
* 取回一个相关数组,第一个字段值为码
*
* @param string $sqlId sql定义ID
* @param array $parameterMap 参数集
* @param array $replaceMap 替换列表
* @return Array
*/
public function fetchPairs()
{
$pairsData = array();
$result = $this->statement->fetchAll();
foreach ($result as $v) {
if (count($v) < 2) {
throw new Q_Db_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;
return $this->statement->fetchAll(PDO::FETCH_KEY_PAIR);
}
/**
* 只取回第一个字段值
*
* @param string $sqlId sql定义ID
* @param array $parameterMap 参数集
* @param array $replaceMap 替换列表
* @return Array
*/
public function fetchOne($columnNumber = 0)
{
return $this->statement->fetchColumn($columnNumber);
}
/**
* 取回所有结果行的第一个字段名
*
* @param string $sqlId sql定义ID
* @param array $parameterMap 参数集
* @param array $replaceMap 替换列表
* @return Array
*/
public function fetchCol()
{
return $this->statement->fetchAll(PDO::FETCH_COLUMN, 0);
}
/**
* 取回结果集中所有字段的值,作为关联数组返回 第一个字段作为码
*
* @param string $sqlId sql定义ID
* @param array $parameterMap 参数集
* @param array $replaceMap 替换列表
* @return Array
*/
public function fetchAssoc()
{
$result = $this->statement->fetchAll(PDO::FETCH_ASSOC);
$data = array();
foreach ($result as $val) {
$tmp = array_values($val);
$data[$tmp[0]] = $val;
}
return $data;
}
/**
* 取回结果集中所有字段的值,作为连续数组返回
* @param int $fetch_style
* @param mixed $fetch_argument
* @param array $ctor_args
* @return array
*/
public function fetchAll($fetch_style = null, $fetch_argument = null, array $ctor_args = array())
{
return $this->statement->fetchAll($fetch_style);
}
/**
* 绑定参数
* @param $stmt
* @param array $params
* @throws Q_Db_Exception
*/
public function bindParams(array $params)
{
foreach ($params as $param => $value) {
if (is_array($value) || is_object($value)) {
throw new Q_Db_Exception ('bindParams: Parameter values are array & objects should not');
}
if (is_int($param)) {
++$param;
}
$this->_bindParam($param, $value, $this->paramType [strtolower(gettype($value))]);
}
}
public function _bindParam($parameter, $variable, $type = null, $length = null, $options = null)
{
try {
if (($type === null) && ($length === null) && ($options === null)) {
return $this->statement->bindParam($parameter, $variable);
} else {
return $this->statement->bindParam($parameter, $variable, $type, $length, $options);
}
} catch (PDOException $e) {
throw new Q_Db_Exception(' ' . $parameter . ' : 绑定错误 ( ' . $e->getMessage() . ' ) ');
}
}
}