Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/sqlite3/
H A Dsqlite3ext.h655 #define sqlite3_total_changes64 sqlite3_api->total_changes64 macro
H A Dsqlite3.h2603 SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3*);
H A Dshell.c21913 sqlite3_changes64(p->db), sqlite3_total_changes64(p->db)); in runOneSqlLine()
H A Dsqlite3.c2909 SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3*);
120780 sqlite3_result_int64(context, sqlite3_total_changes64(db));
127969 #define sqlite3_total_changes64 sqlite3_api->total_changes64
128458 sqlite3_total_changes64,
167693 SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3 *db){
167703 return (int)sqlite3_total_changes64(db);
/freebsd-13.1/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c3289 Tcl_SetWideIntObj(pResult, sqlite3_total_changes64(pDb->db)); in DbObjCmd()