Database error $sqlerr

\n"); print("

Please report the problem to " ."$DB_ADMIN.

\n"); exit(1); } // // 'db_close()' - Close the database. // function db_close() { global $DB_CONN; sqlite_close($DB_CONN); $DB_CONN = false; } // // 'db_count()' - Return the number of rows in a query result. // function // O - Number of rows in result db_count($result) // I - Result of query { if ($result) return (sqlite_num_rows($result)); else return (0); } // // 'db_escape()' - Escape special chars in string for query. // function // O - Quoted string db_escape($str) // I - String { return (sqlite_escape_string($str)); } // // 'db_free()' - Free a database query result... // function db_free($result) // I - Result of query { // Nothing to do, as SQLite doesn't free results... } // // 'db_insert_id()' - Return the ID of the last inserted record. // function // O - ID number db_insert_id() { global $DB_CONN; return (sqlite_last_insert_rowid($DB_CONN)); } // // 'db_next()' - Fetch the next row of a result set and return it as an object. // function // O - Row object or NULL at end db_next($result) // I - Result of query { if ($result) return (sqlite_fetch_array($result, SQLITE_ASSOC)); else return (NULL); } // // 'db_query()' - Run a SQL query and return the result or 0 on error. // function // O - Result of query or NULL db_query($SQL_QUERY) // I - SQL query string { global $DB_CONN; // print("

$SQL_QUERY

\n"); return (sqlite_query($DB_CONN, $SQL_QUERY)); } // // 'db_seek()' - Seek to a specific row within a result. // function // O - TRUE on success, FALSE otherwise db_seek($result, // I - Result of query $index = 0) // I - Row number (0 = first row) { if ($result) return (sqlite_seek($result, $index)); else return (FALSE); } // // End of "$Id: db.php,v 1.3 2004/05/17 20:28:52 mike Exp $". // ?>