statement = $this->db->connID->prepare($sql))) { $this->errorCode = $this->db->connID->lastErrorCode(); $this->errorString = $this->db->connID->lastErrorMsg(); } return $this; } //-------------------------------------------------------------------- /** * Takes a new set of data and runs it against the currently * prepared query. Upon success, will return a Results object. * * @todo finalize() * * @param array $data * * @return boolean */ public function _execute(array $data): bool { if (is_null($this->statement)) { throw new \BadMethodCallException('You must call prepare before trying to execute a prepared statement.'); } foreach ($data as $key => $item) { // Determine the type string if (is_integer($item)) { $bindType = SQLITE3_INTEGER; } elseif (is_float($item)) { $bindType = SQLITE3_FLOAT; } else { $bindType = SQLITE3_TEXT; } // Bind it $this->statement->bindValue($key + 1, $item, $bindType); } $this->result = $this->statement->execute(); return $this->result !== false; } //-------------------------------------------------------------------- /** * Returns the result object for the prepared query. * * @return mixed */ public function _getResult() { return $this->result; } //-------------------------------------------------------------------- }