/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk

« back to all changes in this revision

Viewing changes to classes/database.php

  • Committer: Suren A. Chilingaryan
  • Date: 2020-03-23 10:52:26 UTC
  • Revision ID: csa@suren.me-20200323105226-wnoxrfvs3y2ta3y3
Fix critical error in DATABASE enumeration (ODBC branch)

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
    return array_shift($this->arr);
16
16
 }
17
17
 
 
18
 public function fetchAll($flags = 0) {
 
19
    return $this->arr;
 
20
 }
 
21
 
18
22
 function rewind() {
19
23
    reset($this->arr);
20
24
 }