Home
last modified time | relevance | path

Searched refs:sqlite3_total_changes64 (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3ext.h677 #define sqlite3_total_changes64 sqlite3_api->total_changes64 macro
H A Dsqlite3.h2719 SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3*);
H A Dshell.c29835 sqlite3_changes64(p->db), sqlite3_total_changes64(p->db)); in runOneSqlLine()
H A Dsqlite3.c3032 SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3*);
129297 sqlite3_result_int64(context, sqlite3_total_changes64(db));
137110 #define sqlite3_total_changes64 sqlite3_api->total_changes64
137621 sqlite3_total_changes64,
180919 SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3 *db){
180929 return (int)sqlite3_total_changes64(db);
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c3323 Tcl_SetWideIntObj(pResult, sqlite3_total_changes64(pDb->db)); in DbObjCmd()