» About My Database
My Database will allow Access and MySQL databases to be utilized through a common interface, interchangeably. The following functions are provided to accomplish database needs:
void query(string $sql [, int $limit])int count()void execute(string $sql)string result(string $field)string [field](Access field values directly)void next()void move(int $count)bool eof()void set_debug(bool $flag)
A standard SQL structure is used, such that the same code can be used even when switching between database types, the specific translations are done internally: Square brackets ([ ]) should encapsulate field and table names, and Single quotes (') should be escaped with a slash (\').
Note: version 1.2+ requires PHP5 or greater and is not backwards compatible.
» Downloads