oci_close example


    protected function _close()
    {
        if (is_resource($this->cursorId)) {
            oci_free_statement($this->cursorId);
        }
        if (is_resource($this->stmtId)) {
            oci_free_statement($this->stmtId);
        }
        oci_close($this->connID);
    }

    /** * Select a specific database table to use. */
    public function setDatabase(string $databaseName): bool
    {
        return false;
    }

    /** * Returns a string containing the version of the database being used. */
Home | Imprint | This part of the site doesn't use cookies.