1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Add the sqlite3changebatch_db() API.

FossilOrigin-Name: bee44ebc532f37e3fe61c18878e0d3db06805190
This commit is contained in:
dan
2016-08-24 19:14:59 +00:00
parent a8dee8df64
commit ff8e42e2ca
4 changed files with 22 additions and 8 deletions

View File

@@ -66,6 +66,13 @@ int sqlite3changebatch_add(sqlite3_changebatch*, void *p, int n);
*/
void sqlite3changebatch_zero(sqlite3_changebatch*);
/*
** Return a copy of the first argument passed to the sqlite3changebatch_new()
** call used to create the changebatch object passed as the only argument
** to this function.
*/
sqlite3 *sqlite3changebatch_db(sqlite3_changebatch*);
/*
** Delete a changebatch object.
*/