-
Notifications
You must be signed in to change notification settings - Fork 1
/
Result.php
81 lines (72 loc) · 1.66 KB
/
Result.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
<?php
namespace MyQEE\Database\MariaDB;
/**
* 数据库MySQLi返回类
*
* @author 呼吸二氧化碳 <[email protected]>
* @category Database
* @package Driver
* @subpackage MariaDB
* @copyright Copyright (c) 2008-2018 myqee.com
* @license http://www.myqee.com/license.html
*/
class Result extends \MyQEE\Database\Result
{
public function free()
{
if (is_resource($this->result))
{
$this->result->free();
}
$this->result = null;
}
public function seek($offset)
{
if (isset($this->data[$offset]))
{
return true;
}
elseif ($this->offsetExists($offset) && $this->result && $this->result->data_seek($offset))
{
$this->currentRow = $this->internalRow = $offset;
return true;
}
else
{
return false;
}
}
public function fetchAssoc()
{
return $this->result->fetch_assoc();
}
/**
* 返回一个对象
*
* @return object|\stdClass
*/
public function fetchObject()
{
if (is_string($this->asObject))
{
return $this->result->fetch_object($this->asObject);
}
else
{
return $this->result->fetch_object();
}
}
protected function totalCount()
{
if ($this->result)
{
$count = @$this->result->num_rows;
if (!$count > 0)$count = 0;
}
else
{
$count = count($this->data);
}
return $count;
}
}