How sqlite3 works?

Started by Allen, March 05, 2015, 08:37:20 AM

Previous topic - Next topic

Scott

Hi all, I would like to ask you a little strange problem for you, how sqlite3 works It's urgent, please give me an answer please quickly.

Rory

SQLite3 is a database management system (DBMS) that provides a “lightweight” mechanism for developing database applications. It is not designed for a production environment, but is very well-suited for student projects in the undergraduate course on script programming for the web.


The following functions should serve your needs for the projects in this course:

$db_handle  = new SQLite3($filename);
$db_handle->exec($query_string);
$result     = $db_handle->query($query_string);
$row        = $result->fetchArray();