** Attempt to close the databaes connection. Report errors. */
| 14838 | ** Attempt to close the databaes connection. Report errors. |
| 14839 | */ |
| 14840 | void close_db(sqlite3 *db){ |
| 14841 | int rc = sqlite3_close(db); |
| 14842 | if( rc ){ |
| 14843 | utf8_printf(stderr, "Error: sqlite3_close() returns %d: %s\n", |
| 14844 | rc, sqlite3_errmsg(db)); |
| 14845 | } |
| 14846 | } |
| 14847 | |
| 14848 | #if HAVE_READLINE || HAVE_EDITLINE |
| 14849 | /* |
no test coverage detected