Home | History | Annotate | Download | only in orig

Lines Matching refs:err_code

24691 ** Set the current error code to err_code and clear any prior error message.
24693 SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){
24695 db->errCode = err_code;
24701 ** handle "db". The error code is set to "err_code".
24717 ** should be called with err_code set to SQLITE_OK and zFormat set
24720 SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...){
24722 db->errCode = err_code;
24724 sqlite3Error(db, err_code);