The sqlite3 module

SQLite is a database technology which comes included with Python, via the sqlite3 module. It works by creating a file on the user's filesystem which is then altered using basic SQL syntax.

Since data stored in a SQLite database is stored on disk, it can be used as a form of permanent storage for web and GUI applications.

Using sqlite in Python is as easy as importing the built-in sqlite3 module and then sending it several SQL queries.

We will be using sqlite to store some data about our chat application on the server. Let's have an introduction to sqlite by creating data storage for the users of our chat application.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset