-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathDatabaseResult.php
90 lines (74 loc) · 1.72 KB
/
DatabaseResult.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
<?php
class DatabaseResult {
private $Statement;
private $Result;
public function __construct($Statement) {
$this->Statement = $Statement;
}
public function Execute($data = null) {
$this->Result = $this->Statement->execute($data);
}
public function EndData() {
$this->Statement->closeCursor();
$this->Result = false;
}
/**
* @section Fetching
*/
public function Single() {
return $this->Statement->fetch(\PDO::FETCH_ASSOC);
}
public function All() {
$Res = [];
while ($Row = $this->Single())
$Res[] = $Row;
return $Res;
}
public function RowCount() {
return $this->Statement->rowCount();
}
public function NextRowSet() {
return $this->Statement->nextRowSet();
}
/**
* @section Bindings
*/
public function BindData($name, $value, $type = NULL) {
if ($type === NULL) {
if (is_int($value))
$type = \PDO::PARAM_INT;
else if (is_bool($value))
$type = \PDO::PARAM_BOOL;
else if (is_null($value))
$type = \PDO::PARAM_NULL;
else
$type = \PDO::PARAM_STR;
}
$this->Statement->bindValue($name, $value, $type);
}
public function BindMultipleData($data) {
foreach ($data as $key => $value)
$this->BindData($key, $value);
}
/**
* @section Error Handling
*/
public function ErrorCode() {
return $this->Statement->errorCode();
}
public function ErrorInfo() {
return $this->Statement->errorInfo();
}
public function IsSuccess() {
return $this->Result;
}
/**
* @section Debug
*/
public function QueryString() {
return $this->Statement->queryString;
}
public function DumpParams() {
return $this->Statement->debugDumpParams();
}
}