Another Python SQLite Wrapper
http://code.google.com/p/apsw/
APSW is a Python wrapper for the SQLite embedded relational database
engine. In contrast to other wrappers such as pysqlite it focuses on
being a minimal layer over SQLite attempting just to translate the
complete SQLite API into Python.
- Sources inherited from project devel:languages:python
- Devel package for openSUSE:Factory
-
4
derived packages
- Links to openSUSE:Factory / python-apsw
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout home:Maliku:python/python-apsw && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
_link | 0000000124 124 Bytes | |
apsw-3.42.0.1.tar.gz | 0000881270 861 KB | |
python-apsw.changes | 0000013635 13.3 KB | |
python-apsw.spec | 0000002038 1.99 KB |
Revision 37 (latest revision is 60)
Matej Cepl (mcepl)
committed
(revision 37)
- Update to 3.42.0.1: - Work with SQLite compiled with SQLITE_OMIT_DEPRECATED. Connection.setprofile() was changed from using the deprecated sqlite3_profile to sqlite3_trace_v2 giving the same results. When including the amalgamation, SQLITE_OMIT_DEPRECATED is defined. (APSW issue 443) - Shell updates adding various commands to match the SQLite shell, as well as code and documentation improvements. (APSW issue 397) - Added Connection.read() and apsw.ext.dbinfo() to provide information from the database and journal/wal files. The shell command .dbinfo displays it. - Added apsw.vfs_details(). The shell command .vfslist displays it. - Implemented VFS method xCurrentTimeInt64. The default SQLite VFS no longer provide xCurrentTime (floating point version) if SQLITE_OMIT_DEPRECATED is defined, so this is needed for inheritance to work. (APSW issue 451) - Backwards incompatible change: VFS If you override xCurrentTime, then you will need to override xCurrentTimeInt64 in the same way, or exclude xCurrentTimeInt64 in VFS, or use iVersion of 1. - speedtest now shows summary statistics, and improved help text. (APSW issue 444) - Clean up the SPEC file, use %pyproject_* macros instead.
Comments 0