OXID eShop CE  4.10.7
 All Classes Namespaces Files Functions Variables Pages
ResultSetInterface.php
Go to the documentation of this file.
1 <?php
2 
3 namespace OxidEsales\Eshop\Core\Database\Adapter;
4 
9 {
10 
16  public function close();
17 
23  public function fetchAll();
24 
31  public function fetchRow();
32 
38  public function fieldCount();
39 
47  public function recordCount();
48 
58  public function fields($field);
59 
65  public function moveNext();
66 
74  public function moveFirst();
75 
81  public function moveLast();
82 
93  public function move($rowNumber = 0);
94 
104  public function _seek($row);
105 
113  public function _fetch();
114 
122  public function EOF();
123 
134  public function getArray($nRows = -1);
135 
146  public function getRows($nRows = -1);
147 
156  public function getAll($nRows = -1);
157 
167  public function fetchField($fieldOffset = -1);
168 }