Jump to content

SQLite: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
initial work, rather crude
 
Nikai (talk | contribs)
m +it
Line 8: Line 8:


* http://www.sqlite.org
* http://www.sqlite.org

[[it:SQLite]]

Revision as of 13:02, 6 May 2004

SQLite is a relatively small C library, which provides services of a database engine. Its creator is D. Richard Hipp and the software is in public domain.

Unlike the usual client-server paradigm, the engine is not a standalone process, with which the program comunicates, but becomes an integral part of program. Therefore the primary communication protocol are direct API calls within programming language. This can have a positive impact on the amount of overhead, latency times and overall simplicity.

The library implements most of SQL 92 standard, including transactions, triggers, complex queries.