view databases/pypy3-sqlite3/pkg-descr @ 202:db41475a56f3

Remove support for Python implementation 3.9 because upstream PyPy also has ended support for it
author Franz Glasner <fzglas.hg@dom66.de>
date Wed, 12 Mar 2025 17:05:39 +0100
parents 4faa067df432
children
line wrap: on
line source

SQLite is a library that provides a SQL-language database that
stores data in disk files without requiring a separate server
process. pysqlite provides a SQL interface compliant with the DB-API
2.0 specification described by PEP 249. This means that it should
be possible to write the first 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.