Lines Matching refs:zErrMsg
3655 sqlite3_free(pVTab->zErrMsg);
3656 pVTab->zErrMsg = sqlite3_mprintf(
5309 pCur->base.pVtab->zErrMsg = sqlite3_vmprintf(zFmt, ap);
6331 static void apndDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
6766 static void apndDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){
6767 ORIGVFS(pVfs)->xDlError(ORIGVFS(pVfs), nByte, zErrMsg);
7342 sqlite3_free(pTab->base.zErrMsg);
7343 pTab->base.zErrMsg = sqlite3_vmprintf(zFmt, ap);
7349 sqlite3_free(pCsr->base.pVtab->zErrMsg);
7350 pCsr->base.pVtab->zErrMsg = sqlite3_vmprintf(zFmt, ap);
7391 pTab->base.zErrMsg = sqlite3_mprintf("error in fwrite()");
7652 char **pzErr = &pTab->base.zErrMsg;
7924 &pCsr->base.pVtab->zErrMsg
8000 rc = zipfileReadData(pFile, aRead, nRead, iOff, &pTab->base.zErrMsg);
8018 pTab->base.zErrMsg = sqlite3_mprintf(
8307 pTab->base.zErrMsg = sqlite3_mprintf("zipfile: missing filename");
8317 pTab->base.zErrMsg = sqlite3_mprintf(
8465 rc = zipfileDeflate(aIn, nIn, &pFree, &nCmp, &pTab->base.zErrMsg);
8480 rc = zipfileGetMode(apVal[3], bIsDir, &mode, &pTab->base.zErrMsg);
9985 rc = idxPrintfPrepareStmt(pExpert->db, &pCsr->pData, &pVtab->base.zErrMsg,
12223 pTab->base.zErrMsg = sqlite3_mprintf("%s", sqlite3_errmsg(pTab->db));
12827 char *zErrMsg; /* For sqlite3_recover_errmsg() */
12980 sqlite3_free(p->zErrMsg);
12981 p->zErrMsg = z;
13332 if( p->zErrMsg ) sqlite3_result_error(pCtx, p->zErrMsg, -1);
15356 return (p && p->errCode!=SQLITE_NOMEM) ? p->zErrMsg : "out of memory";
15464 sqlite3_free(p->zErrMsg);
15759 const char *zErrMsg,
15765 va_start(ap, zErrMsg);
15766 zMsg = sqlite3_vmprintf(zErrMsg, ap);
16966 char *zErrMsg = 0;
17002 ,0,0,&zErrMsg);
17003 if( zErrMsg ){
17004 utf8_printf(stderr, "SELFTEST initialization failure: %s\n", zErrMsg);
17005 sqlite3_free(zErrMsg);
20165 char *zErrMsg = 0;
20182 sqlite3_exec(newDb, (const char*)zSql, 0, 0, &zErrMsg);
20183 if( zErrMsg ){
20184 utf8_printf(stderr, "Error: %s\nSQL: [%s]\n", zErrMsg, zSql);
20185 sqlite3_free(zErrMsg);
20186 zErrMsg = 0;
20211 sqlite3_exec(newDb, (const char*)zSql, 0, 0, &zErrMsg);
20212 if( zErrMsg ){
20213 utf8_printf(stderr, "Error: %s\nSQL: [%s]\n", zErrMsg, zSql);
20214 sqlite3_free(zErrMsg);
20215 zErrMsg = 0;
23269 char *zErrMsg = 0;
23279 rc = sqlite3_load_extension(p->db, zFile, zProc, &zErrMsg);
23281 utf8_printf(stderr, "Error: %s\n", zErrMsg);
23282 sqlite3_free(zErrMsg);
23944 char *zErrMsg = 0;
24068 rc = sqlite3_exec(p->db, sSelect.z, callback, &data, &zErrMsg);
24072 if( zErrMsg ){
24073 utf8_printf(stderr,"Error: %s\n", zErrMsg);
24074 sqlite3_free(zErrMsg);
24391 char *zErrMsg = 0;
24394 rc = sqlite3_exec(p->db, zSql, captureOutputCallback, &str, &zErrMsg);
24399 if( rc || zErrMsg ){
24402 utf8_printf(p->out, "%d: error-code-%d: %s\n", tno, rc, zErrMsg);
24403 sqlite3_free(zErrMsg);
25394 char *zErrMsg = 0;
25400 rc = shell_exec(p, zSql, &zErrMsg);
25402 if( rc || zErrMsg ){
25406 if( zErrMsg==0 ){
25409 }else if( cli_strncmp(zErrMsg, "in prepare, ",12)==0 ){
25411 zErrorTail = &zErrMsg[12];
25412 }else if( cli_strncmp(zErrMsg, "stepping, ", 10)==0 ){
25414 zErrorTail = &zErrMsg[10];
25417 zErrorTail = zErrMsg;
25426 sqlite3_free(zErrMsg);
25427 zErrMsg = 0;
25870 char *zErrMsg = 0;
26314 rc = shell_exec(&data, z, &zErrMsg);
26315 if( zErrMsg!=0 ){
26316 utf8_printf(stderr,"Error: %s\n", zErrMsg);
26364 rc = shell_exec(&data, azCmd[i], &zErrMsg);
26365 if( zErrMsg || rc ){
26366 if( zErrMsg!=0 ){
26367 utf8_printf(stderr,"Error: %s\n", zErrMsg);
26371 sqlite3_free(zErrMsg);