resultID->field_count; } //-------------------------------------------------------------------- /** * Generates an array of column names in the result set. * * @return array */ public function getFieldNames(): array { $fieldNames = []; $this->resultID->field_seek(0); while ($field = $this->resultID->fetch_field()) { $fieldNames[] = $field->name; } return $fieldNames; } //-------------------------------------------------------------------- /** * Generates an array of objects representing field meta-data. * * @return array */ public function getFieldData(): array { $retVal = []; $fieldData = $this->resultID->fetch_fields(); foreach ($fieldData as $i => $data) { $retVal[$i] = new \stdClass(); $retVal[$i]->name = $data->name; $retVal[$i]->type = $data->type; $retVal[$i]->max_length = $data->max_length; $retVal[$i]->primary_key = (int) ($data->flags & 2); $retVal[$i]->default = $data->def; } return $retVal; } //-------------------------------------------------------------------- /** * Frees the current result. * * @return void */ public function freeResult() { if (is_object($this->resultID)) { $this->resultID->free(); $this->resultID = false; } } //-------------------------------------------------------------------- /** * Moves the internal pointer to the desired offset. This is called * internally before fetching results to make sure the result set * starts at zero. * * @param integer $n * * @return mixed */ public function dataSeek(int $n = 0) { return $this->resultID->data_seek($n); } //-------------------------------------------------------------------- /** * Returns the result set as an array. * * Overridden by driver classes. * * @return mixed */ protected function fetchAssoc() { return $this->resultID->fetch_assoc(); } //-------------------------------------------------------------------- /** * Returns the result set as an object. * * Overridden by child classes. * * @param string $className * * @return object|boolean|Entity */ protected function fetchObject(string $className = 'stdClass') { if (is_subclass_of($className, Entity::class)) { return empty($data = $this->fetchAssoc()) ? false : (new $className())->setAttributes($data); } return $this->resultID->fetch_object($className); } //-------------------------------------------------------------------- }