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.h687 #define sqlite3_total_changes64 sqlite3_api->total_changes64 macro
H A Dsqlite3.h2913 SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3*);
H A Dshell.c35844 sqlite3_changes64(p->db), sqlite3_total_changes64(p->db)); in runOneSqlLine()
H A Dsqlite3.c3234 SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3*);
134372 sqlite3_result_int64(context, sqlite3_total_changes64(db));
142920 #define sqlite3_total_changes64 sqlite3_api->total_changes64 macro
143441 sqlite3_total_changes64,
188264 SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3 *db){ function
188274 return (int)sqlite3_total_changes64(db);
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c3826 Tcl_SetWideIntObj(pResult, sqlite3_total_changes64(pDb->db)); in DbObjCmd()