| 884 | } |
| 885 | |
| 886 | bool db_sqlite::commit(void) |
| 887 | { |
| 888 | const char* sql = "commit transaction;"; |
| 889 | if (sql_update(sql) == false) { |
| 890 | logger_error("%s error: %s", sql, get_error()); |
| 891 | return false; |
| 892 | } |
| 893 | return true; |
| 894 | } |
| 895 | |
| 896 | bool db_sqlite::set_busy_timeout(int nMillisecs) |
| 897 | { |
nothing calls this directly
no test coverage detected