Kaydet (Commit) 2b464341 authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

Explain SQLite a bit more clearly

üst 7f295de9
...@@ -6,14 +6,16 @@ ...@@ -6,14 +6,16 @@
\sectionauthor{Gerhard Häring}{gh@ghaering.de} \sectionauthor{Gerhard Häring}{gh@ghaering.de}
\versionadded{2.5} \versionadded{2.5}
SQLite is a C library that provides a SQL-language database that SQLite is a C library that provides a lightweight disk-based database
stores data in disk files without requiring a separate server process. that doesn't require a separate server process and allows accessing
the database using a nonstandard variant of the SQL query language.
Some applications can use SQLite for internal data storage. It's also
possible to prototype an application using SQLite and then port the
code to a larger database such as PostgreSQL or Oracle.
pysqlite was written by Gerhard H\"aring and provides a SQL interface pysqlite was written by Gerhard H\"aring and provides a SQL interface
compliant with the DB-API 2.0 specification described by compliant with the DB-API 2.0 specification described by
\pep{249}. This means that it should be possible to write the first \pep{249}.
version of your applications using SQLite for data storage. If
switching to a larger database such as PostgreSQL or Oracle is
later necessary, the switch should be relatively easy.
To use the module, you must first create a \class{Connection} object To use the module, you must first create a \class{Connection} object
that represents the database. Here the data will be stored in the that represents the database. Here the data will be stored in the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment