November 28, 2015

100 words 1 min read

sqlite3 & Flask

sqlite3 & Flask

SQLite is a self-contained, high-reliability, embedded, full-featured, public-domain, SQL database engine.

Sqlite3 & Flask:

SQLite is a C library that provides a lightweight disk-based database 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. Ref: 11.13. sqlite3 — DB-API 2.0 interface for SQLite databases — Python 2.7.14 documentation.

Ref: SQLite Home Page.

comments powered by Disqus