Path to this page:
./
databases/py-apsw,
Python wrapper for SQLite
Branch: CURRENT,
Version: 3.47.0.0,
Package name: py312-apsw-3.47.0.0,
Maintainer: rhialtoAPSW provides an SQLite 3 wrapper that provides the thinnest layer over
the SQLite database library possible. Everything you can do from the
SQLite C API, you can do from Python. Although APSW looks vaguely
similar to the PEP 249 (DBAPI), it is not compliant with that API
because instead it works the way SQLite 3 does.
Required to run:[
databases/sqlite3] [
lang/python310]
Master sites:
Filesize: 2334.445 KB
Version history: (Expand)
- (2024-11-20) Updated to version: py312-apsw-3.47.0.0
- (2024-11-15) Updated to version: py312-apsw-3.46.1.0nb3
- (2024-11-01) Updated to version: py312-apsw-3.46.1.0nb2
- (2024-11-01) Updated to version: py312-apsw-3.46.1.0nb1
- (2024-08-14) Updated to version: py312-apsw-3.46.1.0
- (2024-06-17) Updated to version: py311-apsw-3.46.0.1
CVS history: (Expand)
2024-04-17 12:26:43 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-apsw: updated to 3.45.3.0
3.45.3.0
No APSW changes.
|
2024-03-14 09:20:23 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-apsw: updated to 3.45.2.0
3.45.2.0
Minor doc and tests change due to changed behaviour of sqlite3_serialize on an \
empty database, used by Connection.serialize().
|
2024-01-31 18:28:34 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-apsw: updated to 3.45.1.0
3.45.1.0
No APSW changes.
|
2024-01-22 20:48:28 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-apsw: updated to 3.45.0.0
3.45.0.0
Correctly handle NULL/None VFS filenames
|
2023-12-08 13:27:48 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-apsw: updated to 3.44.2.0
3.44.2.0
Added logger parameter to apsw.ext.log_sqlite() to use a specific logging.Logger \
(APSW issue 493)
Added apsw.ext.result_string() to turn an result code into a string, taking into \
account if it is extended or not.
Provide detail when C implemented objects are printed. For example connections \
include the filename. (APSW issue 494)
Added URIFilename.parameters() (APSW issue 496)
URIFilename are only valid for the duration of the VFS.xOpen() call. If you save \
and use the object later you will get an exception. (APSW issue 501)
|
2023-11-09 14:00:57 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-apsw: updated to 3.44.0.0
3.44.0.0
Added virtual table VTTable.Integrity() support.
On 64 bit platforms with the amalgamation, SQLITE_MAX_MMAP_SIZE is set to 256 \
terabytes. SQLite’s default limit is 2GB. (APSW issue 491)`
|
2023-11-08 14:21:43 by Thomas Klausner | Files touched by this commit (2377) |
Log message:
*: recursive bump for icu 74.1
|
2023-10-29 18:11:35 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-apsw: updated to 3.43.2.0
3.43.2.0
Connection.create_aggregate_function() can take a class with step and final \
methods. (APSW issue 421)
Corrected non PEP 8 compliant names. The old names remain as aliases to the new \
ones, and your code will not break.
|