** An error associated with database handle db has just occurred. Pass ** the error message to callback function xOut. */
| 8669 | ** the error message to callback function xOut. |
| 8670 | */ |
| 8671 | static void idxDatabaseError( |
| 8672 | sqlite3 *db, /* Database handle */ |
| 8673 | char **pzErrmsg /* Write error here */ |
| 8674 | ){ |
| 8675 | *pzErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(db)); |
| 8676 | } |
| 8677 | |
| 8678 | /* |
| 8679 | ** Prepare an SQL statement. |
no outgoing calls
no test coverage detected