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
|
||||
SAVEPOINT()
|
||||
CODE:
|
||||
#if SQLITE_VERSION_NUMBER >= 3006011
|
||||
RETVAL = SQLITE_SAVEPOINT;
|
||||
#else
|
||||
RETVAL = -1;
|
||||
#endif
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue