-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathPdoSupp.php
191 lines (165 loc) · 4.3 KB
/
PdoSupp.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
<?php
declare(strict_types=1);
namespace ToolkitApi;
use PDO;
final class PdoSupp
{
/**
* @var string
*/
private $last_errorcode;
/**
* @var string
*/
private $last_errormsg;
/**
* @var PDO
*/
private $pdo;
/**
*
* @todo should perhaps handle this method differently if $options are not passed
*
* @param string $database
* @param string $user
* @param string $password
* @param array|null $options
* @return bool|PDO
*/
public function connect($database, $user, $password, $options = null)
{
if (!$options) {
$this->setError();
return false;
}
$conn = new PDO($database, $user, $password, $options);
if (!$conn instanceof PDO) {
$this->setError();
return false;
}
return $conn;
}
/**
* PdoSupp constructor.
* @param PDO $pdo
*/
public function __construct(PDO $pdo)
{
$this->pdo = $pdo;
}
/**
* @param PDO $conn
*/
public function disconnect($conn)
{
if ($conn instanceof PDO) {
$conn = null;
}
}
/**
* @param PDO|null $conn
*/
protected function setError($conn = null)
{
if ($conn) {
$this->setErrorCode($conn->errorCode());
$this->setErrorMsg(implode('|', $conn->errorInfo()));
} else {
$this->setErrorCode($this->pdo->errorCode());
$this->setErrorMsg(implode('|', $this->pdo->errorInfo()));
}
}
/**
* @param string $errorCode
*/
protected function setErrorCode($errorCode)
{
$this->last_errorcode = $errorCode;
}
/**
* @return string
*/
public function getErrorCode()
{
return $this->last_errorcode;
}
/**
* @param string $errorMsg
*/
protected function setErrorMsg($errorMsg)
{
$this->last_errormsg = $errorMsg;
}
/**
* @return string
*/
public function getErrorMsg()
{
return $this->last_errormsg;
}
/**
* this function used for special stored procedure call only
*
* @param PDO $conn
* @param string $stmt
* @param array $bindArray
* @return string
*/
public function execXMLStoredProcedure($conn, $stmt, $bindArray)
{
$statement = $conn->prepare($stmt);
if (!$statement) {
$this->setError($conn);
return false;
}
$result = $statement->execute(array(
$bindArray['internalKey'],
$bindArray['controlKey'],
$bindArray['inputXml']
));
if (!$result) {
$this->setError($conn);
return "PDO error code: " . $this->pdo->errorCode() . ' msg: ' . $this->pdo->errorInfo();
}
$outputXml = '';
if (!$bindArray['disconnect']) { // a disconnect request won't return data
// Loop through rows, concatenating XML into a final XML string.
foreach ($statement->fetchAll() as $row) {
// for each row, get XML string from first and only array element,
// no matter whether assoc or numeric key
$xmlChunk = reset($row);
if ($xmlChunk) {
// Remove any "garbage" from after ending </script> tag (there used to be an ODBC clob issue)
if (strstr($xmlChunk , "</script>")) {
$pos = strpos($xmlChunk, "</script>");
$pos += strlen("</script>");
$outputXml .= substr($xmlChunk, 0, $pos);
break;
} else {
$outputXml .= $xmlChunk;
}
}
}
}
return $outputXml;
}
/**
* @param PDO $conn
* @param string $stmt
* @return array
*/
public function executeQuery($conn, $stmt)
{
$txt = array();
$statement = $conn->prepare($stmt);
$result = $statement->execute();
if (!$result) {
$this->setError($conn);
return $txt;
}
foreach ($statement->fetchAll() as $row) {
$txt[] = $row;
}
return $txt;
}
}