Lines Matching defs:zErr
3898 const char *zErr; /* Error message to return */
4218 p->zErr = "unknown \\ escape";
4236 const char *zErr;
4239 zErr = re_subcompile_string(p);
4240 if( zErr ) return zErr;
4246 zErr = re_subcompile_string(p);
4247 if( zErr ) return zErr;
4261 const char *zErr;
4271 zErr = re_subcompile_re(p);
4272 if( zErr ) return zErr;
4420 const char *zErr;
4442 zErr = re_subcompile_re(pRe);
4443 if( zErr ){
4445 return zErr;
4482 return pRe->zErr;
4502 const char *zErr; /* Compile error message */
4510 zErr = re_compile(&pRe, zPattern, sqlite3_user_data(context)!=0);
4511 if( zErr ){
4513 sqlite3_result_error(context, zErr, -1);
4545 const char *zErr;
4554 zErr = re_compile(&pRe, zPattern, sqlite3_user_data(context)!=0);
4555 if( zErr ){
4557 sqlite3_result_error(context, zErr, -1);
8802 char *zErr = 0;
8823 zErr = sqlite3_mprintf("wrong number of arguments to function zipfile()");
8843 zErr = sqlite3_mprintf("first argument to zipfile() must be non-NULL");
8853 zErr = sqlite3_mprintf("illegal method value: %d", iMethod);
8871 rc = zipfileDeflate(aData, nData, &aFree, &nOut, &zErr);
8886 rc = zipfileGetMode(pMode, bIsDir, &mode, &zErr);
8897 zErr = sqlite3_mprintf("non-directory name must not end with /");
8952 if( zErr ){
8953 sqlite3_result_error(pCtx, zErr, -1);
8958 sqlite3_free(zErr);
17147 char *zErr;
17159 zErr = sqlite3_str_finish(pStr);
17160 shell_check_oom(zErr);
17161 return zErr;
18216 char *zErr = 0;
18250 pState->expert.pExpert = sqlite3_expert_new(pState->db, &zErr);
18252 raw_printf(stderr, "sqlite3_expert_new: %s\n", zErr ? zErr : "out of memory");
18260 sqlite3_free(zErr);
18691 char *zErr = 0;
18692 rc = sqlite3_exec(p->db, zQuery, dump_callback, p, &zErr);
18697 if( zErr ){
18698 utf8_printf(p->out, "/****** %s ******/\n", zErr);
18699 sqlite3_free(zErr);
18700 zErr = 0;
18705 rc = sqlite3_exec(p->db, zQ2, dump_callback, p, &zErr);
18707 utf8_printf(p->out, "/****** ERROR: %s ******/\n", zErr);
18711 sqlite3_free(zErr);
20426 const char *zErr = sqlite3_errmsg(db);
20427 utf8_printf(stderr, "Error: %s\n", zErr);
21342 char *zErr = 0;
21345 rc = sqlite3_exec(pAr->db, zSql, 0, 0, &zErr);
21352 if( zErr ){
21353 utf8_printf(stdout, "ERROR: %s\n", zErr);
21354 sqlite3_free(zErr);
21444 char *zErr = 0;
21445 rc = sqlite3_exec(pAr->db, zSql, 0, 0, &zErr);
21446 if( zErr ){
21447 utf8_printf(stdout, "ERROR: %s\n", zErr);
21448 sqlite3_free(zErr);
21761 const char *zErr = sqlite3_recover_errmsg(p);
21763 raw_printf(stderr, "sql error: %s (%d)\n", zErr, errCode);