mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
SAVEPOINT requires SQLite 3.6.11
This commit is contained in:
parent
de36cae5e2
commit
d9887cd5b9
1 changed files with 4 additions and 0 deletions
|
@ -462,7 +462,11 @@ FUNCTION()
|
||||||
static int
|
static int
|
||||||
SAVEPOINT()
|
SAVEPOINT()
|
||||||
CODE:
|
CODE:
|
||||||
|
#if SQLITE_VERSION_NUMBER >= 3006011
|
||||||
RETVAL = SQLITE_SAVEPOINT;
|
RETVAL = SQLITE_SAVEPOINT;
|
||||||
|
#else
|
||||||
|
RETVAL = -1;
|
||||||
|
#endif
|
||||||
OUTPUT:
|
OUTPUT:
|
||||||
RETVAL
|
RETVAL
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue