Lines Matching defs:err_code
33706 static SQLITE_NOINLINE void sqlite3ErrorFinish(sqlite3 *db, int err_code){
33708 sqlite3SystemError(db, err_code);
33712 ** Set the current error code to err_code and clear any prior error message.
33713 ** Also set iSysErrno (by calling sqlite3System) if the err_code indicates
33716 SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){
33718 db->errCode = err_code;
33719 if( err_code || db->pErr ){
33720 sqlite3ErrorFinish(db, err_code);
33751 ** handle "db". The error code is set to "err_code".
33758 ** should be called with err_code set to SQLITE_OK and zFormat set
33761 SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...){
33763 db->errCode = err_code;
33764 sqlite3SystemError(db, err_code);
33766 sqlite3Error(db, err_code);