Subversion Repositories oidplus

Rev

Rev 1232 | Rev 1316 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1232 Rev 1236
Line 68... Line 68...
68
         */
68
         */
69
        public function prefetchAll() {
69
        public function prefetchAll() {
70
                if (!is_null($this->prefetchedArray)) return;
70
                if (!is_null($this->prefetchedArray)) return;
71
                $this->prefetchedArray = array();
71
                $this->prefetchedArray = array();
72
                oci_fetch_all($this->res, $this->prefetchedArray, 0, -1, OCI_FETCHSTATEMENT_BY_ROW);
72
                oci_fetch_all($this->res, $this->prefetchedArray, 0, -1, OCI_FETCHSTATEMENT_BY_ROW);
-
 
73
                foreach ($this->prefetchedArray as &$row) { /** @phpstan-ignore-line */
-
 
74
                        $this->fixFields($row);
-
 
75
                }
73
        }
76
        }
74
 
77
 
75
        /**
78
        /**
76
         * @return int
79
         * @return int
77
         */
80
         */