-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathdb.cls.php
executable file
·221 lines (195 loc) · 6.12 KB
/
db.cls.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
<?php
/*
* This file is part of the phpems/phpems.
*
* (c) oiuv <[email protected]>
*
* 项目维护:oiuv(QQ:7300637) | 定制服务:火眼(QQ:278768688)
*
* This source file is subject to the MIT license that is bundled.
*/
class db2
{
private $queryid = 0;
private $linkid = 0;
public $q = 1;
public $debug = 1;
public $G;
public function __construct(&$G)
{
$this->G = $G;
$this->sql = $this->G->make('sql');
}
//获取MYSQL版本信息
public function getVersion()
{
return mysql_get_server_info($this->linkid);
}
//连接MYSQL
public function connect($host = DH, $dbuser = DU, $password = DP, $dbname = DB, $dbcode = HE)
{
$dbcode = str_replace('-', '', $dbcode);
if (!$this->linkid) {
$this->linkid = mysql_connect($host, $dbuser, $password) or exit('Mysql数据库连接失败,请检查数据库用户名和密码是否正确!');
}
$version = $this->getVersion();
if ($version >= '4.0.1') {
mysql_query("SET character_set_connection='{$dbcode}', character_set_results='{$dbcode}', character_set_client=binary", $this->linkid);
if ($version >= '5.0.1') {
mysql_query("SET sql_mode=''", $this->linkid);
}
} else {
exit('Mysql版本过低,请更换5.0以上版本!');
}
mysql_select_db($dbname, $this->linkid);
}
//执行SQL非查询语句
public function exec($sql)
{
$this->query($sql);
return mysql_affected_rows($this->linkid);
}
//执行select
public function query($sql)
{
if (!$sql) {
return false;
}
if (!$this->linkid) {
$this->connect();
}
$this->q++;
$this->queryid = mysql_query($sql);
if (mysql_errno($this->linkid) && $this->debug) {
exit('ERRO:'.$sql.':'.mysql_error());
return false;
}
}
public function _fetch($sql = false, $type = 1, $position = 0)
{
if ($sql) {
$this->query($sql);
}
if (!mysql_num_rows($this->queryid)) {
return false;
}
if ($position) {
mysql_data_seek($this->queryid, $position);
}
if (1 == $type) {
return mysql_fetch_assoc($this->queryid);
} elseif (2 == $type) {
return mysql_fetch_object($this->queryid);
}
return mysql_fetch_array($this->queryid);
}
//获取单条记录
public function fetch($sql = null, $unserialize = false, $type = 1, $position = 0)
{
$tmp = $this->_fetch($sql, $type);
if ($tmp) {
if ($unserialize) {
if (is_array($unserialize)) {
foreach ($unserialize as $value) {
$tmp[$value] = unserialize($tmp[$value]);
}
} else {
$tmp[$unserialize] = unserialize($tmp[$unserialize]);
}
}
}
return $tmp;
}
//获取多条符合查询结果的记录
public function fetchAll($sql = null, $key = false, $unserialize = false, $type = 1, $keytype = 0)
{
$rs = [];
if ($sql) {
$this->query($sql);
}
while ($tmp = $this->_fetch(false, $type)) {
if ($unserialize) {
if (is_array($unserialize)) {
foreach ($unserialize as $value) {
$tmp[$value] = unserialize($tmp[$value]);
}
} else {
$tmp[$unserialize] = unserialize($tmp[$unserialize]);
}
}
if ($key) {
if ($keytype) {
$rs[$tmp[$key]][] = $tmp;
} else {
$rs[$tmp[$key]] = $tmp;
}
} else {
$rs[] = $tmp;
}
}
if (count($rs)) {
return $rs;
}
return false;
}
//返回受影响的记录数
public function affectedRows()
{
return mysql_affected_rows($this->linkid);
}
//返回插入的记录的ID
public function lastInsertId()
{
return mysql_insert_id($this->linkid);
}
//列出数据
public function listElements($page, $number, $args, $type = 1)
{
if (!is_array($args)) {
return false;
}
$pg = $this->G->make('pg');
$page = $page > 0 ? $page : 1;
$r = [];
$data = [$args['select'], $args['table'], $args['query'], $args['groupby'], $args['orderby'], [intval($page - 1) * $number, $number]];
$sql = $this->sql->makeSelect($data, $type);
$r['data'] = $this->fetchAll($sql, $args['index'], $args['serial']);
if ($type) {
$data = ['count(*) AS number', $args['table'], $args['query']];
} else {
$data = [false, $args['table'], $args['query'], $args['groupby']];
$sql = $this->sql->makeSelect($data, $type);
$data = ['count(*) AS number', '('.$sql.')', 1];
}
$sql = $this->sql->makeSelect($data, $type);
$t = $this->fetch($sql);
$pages = $pg->outPage($pg->getPagesNumber($t['number'], $number), $page);
$r['pages'] = $pages;
$r['number'] = $t['number'];
return $r;
}
//插入记录
public function insertElement($args)
{
$data = [$args['table'], $args['query']];
$sql = $this->sql->makeInsert($data);
$this->exec($sql);
return $this->lastInsertId();
}
//删除记录
public function delElement($args)
{
$data = [$args['table'], $args['query'], $args['orderby'], $args['limit']];
$sql = $this->sql->makeDelete($data);
$this->exec($sql);
return $this->affectedRows();
}
//更新记录
public function updateElement($args)
{
$data = [$args['table'], $args['value'], $args['query'], $args['limit']];
$sql = $this->sql->makeUpdate($data);
$this->exec($sql);
return $this->affectedRows();
}
}