Lines Matching refs:zErr
6420 const char *zErr; /* Error message to return */ member
6740 p->zErr = "unknown \\ escape"; in re_esc_char()
6758 const char *zErr; in re_subcompile_re() local
6761 zErr = re_subcompile_string(p); in re_subcompile_re()
6762 if( zErr ) return zErr; in re_subcompile_re()
6768 zErr = re_subcompile_string(p); in re_subcompile_re()
6769 if( zErr ) return zErr; in re_subcompile_re()
6783 const char *zErr; in re_subcompile_string() local
6793 zErr = re_subcompile_re(p); in re_subcompile_string()
6794 if( zErr ) return zErr; in re_subcompile_string()
6942 const char *zErr; in re_compile() local
6964 zErr = re_subcompile_re(pRe); in re_compile()
6965 if( zErr ){ in re_compile()
6967 return zErr; in re_compile()
7004 return pRe->zErr; in re_compile()
7024 const char *zErr; /* Compile error message */ in re_sql_func() local
7032 zErr = re_compile(&pRe, zPattern, sqlite3_user_data(context)!=0); in re_sql_func()
7033 if( zErr ){ in re_sql_func()
7035 sqlite3_result_error(context, zErr, -1); in re_sql_func()
7067 const char *zErr; in re_bytecode_func() local
7077 zErr = re_compile(&pRe, zPattern, sqlite3_user_data(context)!=0); in re_bytecode_func()
7078 if( zErr ){ in re_bytecode_func()
7080 sqlite3_result_error(context, zErr, -1); in re_bytecode_func()
11358 char *zErr = 0; in zipfileStep() local
11379 zErr = sqlite3_mprintf("wrong number of arguments to function zipfile()"); in zipfileStep()
11399 zErr = sqlite3_mprintf("first argument to zipfile() must be non-NULL"); in zipfileStep()
11409 zErr = sqlite3_mprintf("illegal method value: %d", iMethod); in zipfileStep()
11427 rc = zipfileDeflate(aData, nData, &aFree, &nOut, &zErr); in zipfileStep()
11442 rc = zipfileGetMode(pMode, bIsDir, &mode, &zErr); in zipfileStep()
11453 zErr = sqlite3_mprintf("non-directory name must not end with /"); in zipfileStep()
11508 if( zErr ){ in zipfileStep()
11509 sqlite3_result_error(pCtx, zErr, -1); in zipfileStep()
11514 sqlite3_free(zErr); in zipfileStep()
14300 char *zErr; /* Error message */ member
14311 sqlite3_free(p->zErr); in intckSaveErrmsg()
14312 p->zErr = sqlite3_mprintf("%s", sqlite3_errmsg(p->db)); in intckSaveErrmsg()
15070 sqlite3_free(p->zErr); in sqlite3_intck_close()
15152 if( pzErr ) *pzErr = p->zErr; in sqlite3_intck_error()
21096 char *zErr; in save_err_msg() local
21108 zErr = sqlite3_str_finish(pStr); in save_err_msg()
21109 shell_check_oom(zErr); in save_err_msg()
21110 return zErr; in save_err_msg()
22245 char *zErr = 0; in expertDotCommand() local
22279 pState->expert.pExpert = sqlite3_expert_new(pState->db, &zErr); in expertDotCommand()
22281 eputf("sqlite3_expert_new: %s\n", zErr ? zErr : "out of memory"); in expertDotCommand()
22289 sqlite3_free(zErr); in expertDotCommand()
22714 char *zErr = 0; in run_schema_dump_query() local
22715 rc = sqlite3_exec(p->db, zQuery, dump_callback, p, &zErr); in run_schema_dump_query()
22720 if( zErr ){ in run_schema_dump_query()
22721 oputf("/****** %s ******/\n", zErr); in run_schema_dump_query()
22722 sqlite3_free(zErr); in run_schema_dump_query()
22723 zErr = 0; in run_schema_dump_query()
22728 rc = sqlite3_exec(p->db, zQ2, dump_callback, p, &zErr); in run_schema_dump_query()
22730 oputf("/****** ERROR: %s ******/\n", zErr); in run_schema_dump_query()
22734 sqlite3_free(zErr); in run_schema_dump_query()
24435 const char *zErr = sqlite3_errmsg(db); in shellDatabaseError() local
24436 eputf("Error: %s\n", zErr); in shellDatabaseError()
25338 char *zErr = 0; in arRemoveCommand() local
25341 rc = sqlite3_exec(pAr->db, zSql, 0, 0, &zErr); in arRemoveCommand()
25348 if( zErr ){ in arRemoveCommand()
25349 sputf(stdout, "ERROR: %s\n", zErr); /* stdout? */ in arRemoveCommand()
25350 sqlite3_free(zErr); in arRemoveCommand()
25440 char *zErr = 0; in arExecSql() local
25441 rc = sqlite3_exec(pAr->db, zSql, 0, 0, &zErr); in arExecSql()
25442 if( zErr ){ in arExecSql()
25443 sputf(stdout, "ERROR: %s\n", zErr); in arExecSql()
25444 sqlite3_free(zErr); in arExecSql()
25755 const char *zErr = sqlite3_recover_errmsg(p); in recoverDatabaseCmd() local
25757 eputf("sql error: %s (%d)\n", zErr, errCode); in recoverDatabaseCmd()
25775 const char *zErr = 0; in intckDatabaseCmd() local
25787 rc = sqlite3_intck_error(p, &zErr); in intckDatabaseCmd()
25788 if( zErr ){ in intckDatabaseCmd()
25789 eputf("%s\n", zErr); in intckDatabaseCmd()