Difference between revisions of "SQLite3"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "SQLite is a self-contained, serverless, zero-configuration, transactional SQL database engine. You can use it to create a file-based database directly from your code as it does n...")
 
 
Line 1: Line 1:
SQLite is a self-contained, serverless, zero-configuration, transactional SQL database engine. You can use it to create a file-based database directly from your code as it does not require a server application.
+
[http://www.sqlite.org/ SQLite] is a self-contained, serverless, zero-configuration, transactional SQL database engine. You can use it to create a file-based database directly from your code as it does not require a server application.
  
 
You can find out more about SQLite language features [http://www.sqlite.org/lang.html here].
 
You can find out more about SQLite language features [http://www.sqlite.org/lang.html here].

Latest revision as of 17:19, 10 February 2012

SQLite is a self-contained, serverless, zero-configuration, transactional SQL database engine. You can use it to create a file-based database directly from your code as it does not require a server application.

You can find out more about SQLite language features here.