** An error associated with database handle db has just occurred. Pass ** the error message to callback function xOut. */
| 10512 | ** the error message to callback function xOut. |
| 10513 | */ |
| 10514 | static void idxDatabaseError( |
| 10515 | sqlite3 *db, /* Database handle */ |
| 10516 | char **pzErrmsg /* Write error here */ |
| 10517 | ){ |
| 10518 | *pzErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(db)); |
| 10519 | } |
| 10520 | |
| 10521 | /* |
| 10522 | ** Prepare an SQL statement. |
no outgoing calls
no test coverage detected