** Return the handle error message, if any. */
| 16215 | ** Return the handle error message, if any. |
| 16216 | */ |
| 16217 | const char *sqlite3_recover_errmsg(sqlite3_recover *p){ |
| 16218 | return (p && p->errCode!=SQLITE_NOMEM) ? p->zErrMsg : "out of memory"; |
| 16219 | } |
| 16220 | |
| 16221 | /* |
| 16222 | ** Return the handle error code. |
no outgoing calls
no test coverage detected