Lines Matching refs:zErrMsg
6173 sqlite3_free(pVTab->zErrMsg); in seriesBestIndex()
6174 pVTab->zErrMsg = sqlite3_mprintf( in seriesBestIndex()
7840 pCur->base.pVtab->zErrMsg = sqlite3_vmprintf(zFmt, ap); in fsdirSetErrmsg()
8864 static void apndDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
9299 static void apndDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ in apndDlError() argument
9300 ORIGVFS(pVfs)->xDlError(ORIGVFS(pVfs), nByte, zErrMsg); in apndDlError()
9877 sqlite3_free(pTab->base.zErrMsg); in zipfileTableErr()
9878 pTab->base.zErrMsg = sqlite3_vmprintf(zFmt, ap); in zipfileTableErr()
9884 sqlite3_free(pCsr->base.pVtab->zErrMsg); in zipfileCursorErr()
9885 pCsr->base.pVtab->zErrMsg = sqlite3_vmprintf(zFmt, ap); in zipfileCursorErr()
9926 pTab->base.zErrMsg = sqlite3_mprintf("error in fwrite()"); in zipfileAppendData()
10187 char **pzErr = &pTab->base.zErrMsg; in zipfileGetEntry()
10460 &pCsr->base.pVtab->zErrMsg in zipfileColumn()
10539 rc = zipfileReadData(pFile, aRead, nRead, iOff, &pTab->base.zErrMsg); in zipfileReadEOCD()
10557 pTab->base.zErrMsg = sqlite3_mprintf( in zipfileReadEOCD()
10850 pTab->base.zErrMsg = sqlite3_mprintf("zipfile: missing filename"); in zipfileBegin()
10860 pTab->base.zErrMsg = sqlite3_mprintf( in zipfileBegin()
11020 rc = zipfileDeflate(aIn, nIn, &pFree, &nCmp, &pTab->base.zErrMsg); in zipfileUpdate()
11035 rc = zipfileGetMode(apVal[3], bIsDir, &mode, &pTab->base.zErrMsg); in zipfileUpdate()
12544 rc = idxPrintfPrepareStmt(pExpert->db, &pCsr->pData, &pVtab->base.zErrMsg, in expertFilter()
16343 pTab->base.zErrMsg = sqlite3_mprintf("%s", sqlite3_errmsg(pTab->db)); in dbdataFilter()
16687 char *zErrMsg; /* For sqlite3_recover_errmsg() */ member
16840 sqlite3_free(p->zErrMsg); in recoverError()
16841 p->zErrMsg = z; in recoverError()
17192 if( p->zErrMsg ) sqlite3_result_error(pCtx, p->zErrMsg, -1); in recoverGetPage()
19225 return (p && p->errCode!=SQLITE_NOMEM) ? p->zErrMsg : "out of memory"; in sqlite3_recover_errmsg()
19333 sqlite3_free(p->zErrMsg); in sqlite3_recover_finish()
19635 const char *zErrMsg, in failIfSafeMode() argument
19641 va_start(ap, zErrMsg); in failIfSafeMode()
19642 zMsg = sqlite3_vmprintf(zErrMsg, ap); in failIfSafeMode()
20915 char *zErrMsg = 0; in createSelftestTable() local
20951 ,0,0,&zErrMsg); in createSelftestTable()
20952 if( zErrMsg ){ in createSelftestTable()
20953 eputf("SELFTEST initialization failure: %s\n", zErrMsg); in createSelftestTable()
20954 sqlite3_free(zErrMsg); in createSelftestTable()
24155 char *zErrMsg = 0; in tryToCloneSchema() local
24172 sqlite3_exec(newDb, (const char*)zSql, 0, 0, &zErrMsg); in tryToCloneSchema()
24173 if( zErrMsg ){ in tryToCloneSchema()
24174 eputf("Error: %s\nSQL: [%s]\n", zErrMsg, zSql); in tryToCloneSchema()
24175 sqlite3_free(zErrMsg); in tryToCloneSchema()
24176 zErrMsg = 0; in tryToCloneSchema()
24202 sqlite3_exec(newDb, (const char*)zSql, 0, 0, &zErrMsg); in tryToCloneSchema()
24203 if( zErrMsg ){ in tryToCloneSchema()
24204 eputf("Error: %s\nSQL: [%s]\n", zErrMsg, zSql); in tryToCloneSchema()
24205 sqlite3_free(zErrMsg); in tryToCloneSchema()
24206 zErrMsg = 0; in tryToCloneSchema()
27417 char *zErrMsg = 0; in do_meta_command() local
27428 rc = sqlite3_load_extension(p->db, zFile, zProc, &zErrMsg); in do_meta_command()
27430 eputf("Error: %s\n", zErrMsg); in do_meta_command()
27431 sqlite3_free(zErrMsg); in do_meta_command()
28107 char *zErrMsg = 0; in do_meta_command() local
28231 rc = sqlite3_exec(p->db, sSelect.z, callback, &data, &zErrMsg); in do_meta_command()
28235 if( zErrMsg ){ in do_meta_command()
28236 eputf("Error: %s\n", zErrMsg); in do_meta_command()
28237 sqlite3_free(zErrMsg); in do_meta_command()
28546 char *zErrMsg = 0; in do_meta_command() local
28549 rc = sqlite3_exec(p->db, zSql, captureOutputCallback, &str, &zErrMsg); in do_meta_command()
28554 if( rc || zErrMsg ){ in do_meta_command()
28557 oputf("%d: error-code-%d: %s\n", tno, rc, zErrMsg); in do_meta_command()
28558 sqlite3_free(zErrMsg); in do_meta_command()
29796 char *zErrMsg = 0; in runOneSqlLine() local
29802 rc = shell_exec(p, zSql, &zErrMsg); in runOneSqlLine()
29804 if( rc || zErrMsg ){ in runOneSqlLine()
29808 if( zErrMsg==0 ){ in runOneSqlLine()
29811 }else if( cli_strncmp(zErrMsg, "in prepare, ",12)==0 ){ in runOneSqlLine()
29813 zErrorTail = &zErrMsg[12]; in runOneSqlLine()
29814 }else if( cli_strncmp(zErrMsg, "stepping, ", 10)==0 ){ in runOneSqlLine()
29816 zErrorTail = &zErrMsg[10]; in runOneSqlLine()
29819 zErrorTail = zErrMsg; in runOneSqlLine()
29828 sqlite3_free(zErrMsg); in runOneSqlLine()
29829 zErrMsg = 0; in runOneSqlLine()
30323 char *zErrMsg = 0; local
30808 rc = shell_exec(&data, z, &zErrMsg);
30809 if( zErrMsg!=0 ){
30810 eputf("Error: %s\n", zErrMsg);
30861 rc = shell_exec(&data, azCmd[i], &zErrMsg);
30862 if( zErrMsg || rc ){
30863 if( zErrMsg!=0 ){
30864 eputf("Error: %s\n", zErrMsg);
30868 sqlite3_free(zErrMsg);