1This is an extension for the SQLite Embeddable SQL Database Engine. 2http://www.sqlite.org/ 3 4SQLite is a C library that implements an embeddable SQL database engine. 5Programs that link with the SQLite library can have SQL database access 6without running a separate RDBMS process. 7 8SQLite is not a client library used to connect to a big database server. 9SQLite is the server. The SQLite library reads and writes directly to and from 10the database files on disk 11 12 13 14vim:tw=78:et 15