Peter McCormick
|
bfee9fad84
|
bpo-41815: SQLite: segfault if backup called on closed database (GH-22322)
# [bpo-41815](): SQLite: fix segfault if backup called on closed database
Attempting to backup a closed database will trigger segfault:
```python
import sqlite3
target = sqlite3.connect(':memory:')
source = sqlite3.connect(':memory:')
source.close()
source.backup(target)
```
|
2020-09-19 20:40:46 -07:00 |
Erlend Egeberg Aasland
|
207c321f13
|
bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909)
Remove code required to support SQLite pre 3.7.3.
Co-written-by: Berker Peksag <berker.peksag@gmail.com>
Co-written-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
|
2020-09-07 22:26:54 +01:00 |
Aviv Palivoda
|
bbf7bb7a63
|
bpo-27645: Fix version number in 'database in transaction' fallback (GH-6131)
It was actually fixed in SQLite 3.8.8, not 3.8.7.
|
2018-03-18 03:48:55 +03:00 |
Berker Peksag
|
7280a4eef5
|
bpo-27645: Skip test_bad_target_in_transaction if SQLite == 3.8.7.1 (GH-6067)
|
2018-03-11 03:38:50 +03:00 |
Emanuele Gaifas
|
d7aed4102d
|
bpo-27645: Add support for native backup facility of SQLite (GH-4238)
|
2018-03-11 01:08:31 +03:00 |