| 392 | } |
| 393 | |
| 394 | static size_t db_sqlite3_count_changes(struct db_stmt *stmt) |
| 395 | { |
| 396 | sqlite3 *s = conn2sql(stmt->db->conn); |
| 397 | return sqlite3_changes(s); |
| 398 | } |
| 399 | |
| 400 | static void db_sqlite3_close(struct db *db) |
| 401 | { |
nothing calls this directly
no test coverage detected