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.h679 #define sqlite3_total_changes64 sqlite3_api->total_changes64 macro
H A Dsqlite3.h2861 SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3*);
H A Dshell.c32713 sqlite3_changes64(p->db), sqlite3_total_changes64(p->db)); in runOneSqlLine()
H A Dsqlite3.c3180 SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3*);
131028 sqlite3_result_int64(context, sqlite3_total_changes64(db));
139050 #define sqlite3_total_changes64 sqlite3_api->total_changes64
139563 sqlite3_total_changes64,
183790 SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3 *db){
183800 return (int)sqlite3_total_changes64(db);
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c3378 Tcl_SetWideIntObj(pResult, sqlite3_total_changes64(pDb->db)); in DbObjCmd()