Lines Matching defs:sqlite3_changes
2285 ** the sqlite3_changes() interface can be called to find the number of
2295 ** while [sqlite3_changes()] is running then the value returned
2298 SQLITE_API int sqlite3_changes(sqlite3*);
2317 ** See also the [sqlite3_changes()] interface, the
9735 int nChange; /* Value returned by sqlite3_changes() */
62669 ** sqlite3_changes() on the database handle 'db'.
69022 ** change counter (returned by subsequent calls to sqlite3_changes()).
86592 ** around the sqlite3_changes() C/C++ function and hence follows the same
86602 sqlite3_result_int(context, sqlite3_changes(db));
91243 #define sqlite3_changes sqlite3_api->changes
91553 sqlite3_changes,
113115 SQLITE_API int sqlite3_changes(sqlite3 *db){
128426 if( sqlite3_changes(p->db) ) *pnDoc = *pnDoc - 1;