** Attempt to close the databaes connection. Report errors. */
| 20574 | ** Attempt to close the databaes connection. Report errors. |
| 20575 | */ |
| 20576 | void close_db(sqlite3 *db){ |
| 20577 | int rc = sqlite3_close(db); |
| 20578 | if( rc ){ |
| 20579 | utf8_printf(stderr, "Error: sqlite3_close() returns %d: %s\n", |
| 20580 | rc, sqlite3_errmsg(db)); |
| 20581 | } |
| 20582 | } |
| 20583 | |
| 20584 | #if HAVE_READLINE || HAVE_EDITLINE |
| 20585 | /* |
no test coverage detected