diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 659ebfb25..3c8b2d680 100644 --- a/src/main.c +++ b/src/main.c @@ -14,7 +14,7 @@ ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id: main.c,v 1.157 2004/02/20 14:50:58 drh Exp $ +** $Id: main.c,v 1.158 2004/02/20 22:53:39 rdc Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -545,6 +545,10 @@ int sqlite_changes(sqlite *db){ return db->nChange; } +int sqlite_last_statement_changes(sqlite *db){ + return db->lsChange; +} + /* ** Close an existing SQLite database */ |