mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-25 10:24:32 +02:00
Added table.update(pk, ..., alter=True)
This commit is contained in:
parent
5225dbb89c
commit
4ab8d46b03
4 changed files with 40 additions and 6 deletions
|
|
@ -1,4 +1,9 @@
|
|||
try:
|
||||
import pysqlite3 as sqlite3
|
||||
import pysqlite3.dbapi2
|
||||
|
||||
OperationalError = pysqlite3.dbapi2.OperationalError
|
||||
except ImportError:
|
||||
import sqlite3
|
||||
|
||||
OperationalError = sqlite3.OperationalError
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue