num_rows)) { return $this->num_rows; } return 0; } // -------------------------------------------------------------------- /** * Number of fields in the result set * * @return integer */ public function num_fields() { return @ibase_num_fields($this->result_id); } // -------------------------------------------------------------------- /** * Fetch Field Names * * Generates an array of column names * * @return array */ public function list_fields() { $field_names = array(); for ($i = 0, $num_fields=$this->num_fields(); $i < $num_fields; $i++) { $info = ibase_field_info($this->result_id, $i); $field_names[] = $info['name']; } return $field_names; } // -------------------------------------------------------------------- /** * Field data * * Generates an array of objects containing field meta-data * * @return array */ public function field_data() { $retval = array(); for ($i = 0, $num_fields=$this->num_fields(); $i < $num_fields; $i++) { $info = ibase_field_info($this->result_id, $i); $F = new stdClass(); $F->name = $info['name']; $F->type = $info['type']; $F->max_length = $info['length']; $F->primary_key = 0; $F->default = ''; $retval[] = $F; } return $retval; } // -------------------------------------------------------------------- /** * Free the result * * @return null */ public function free_result() { @ibase_free_result($this->result_id); } // -------------------------------------------------------------------- /** * Data Seek * * Moves the internal pointer to the desired offset. We call * this internally before fetching results to make sure the * result set starts at zero * * @return array */ public function _data_seek($n = 0) { //Set the row count to 0 $this->num_rows = 0; //Interbase driver doesn't implement a suitable function return FALSE; } // -------------------------------------------------------------------- /** * Result - associative array * * Returns the result set as an array * * @return array */ public function _fetch_assoc() { //Increment row count $this->num_rows++; return @ibase_fetch_assoc($this->result_id); } // -------------------------------------------------------------------- /** * Result - object * * Returns the result set as an object * * @return object */ public function _fetch_object() { //Increment row count $this->num_rows++; return @ibase_fetch_object($this->result_id); } } /* End of file interbase_result.php */ /* Location: ./system/database/drivers/interbase/interbase_result.php */