mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
41a65d90c0
This port installs a Python "standard" library version of pysqlite which is provided by databases/py-pysqlite22 already. Because sqlite3 module was introduced in Python 2.5, this port plays only for 2.5 or laters. See Also: http://docs.python.org/dev/lib/module-sqlite3.html
9 lines
472 B
Plaintext
9 lines
472 B
Plaintext
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.
|