Lines Matching defs:sqlite3_mprintf

2504 ** ^The sqlite3_mprintf() and sqlite3_vmprintf() routines write their
2552 ** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES('%q')", zText);
2580 ** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES(%Q)", zText);
2592 SQLITE_API char *sqlite3_mprintf(const char*,...);
5266 ** point to an appropriate error message (obtained from [sqlite3_mprintf()])
5502 ** string obtained from [sqlite3_mprintf()] to zErrMsg. The method should
5511 char *zErrMsg; /* Error message from sqlite3_mprintf() */
8279 #define P4_MPRINTF (-11) /* P4 is a string obtained from sqlite3_mprintf() */
19800 SQLITE_API char *sqlite3_mprintf(const char *zFormat, ...){
57371 /* For a Real or Integer, use sqlite3_mprintf() to produce the UTF-8
62101 zErr = sqlite3_mprintf(
84334 zBuf = sqlite3_mprintf("%.*f",n,r);
89200 #define sqlite3_mprintf sqlite3_api->mprintf
89509 sqlite3_mprintf,
89719 *pzErrMsg = sqlite3_mprintf("not authorized");
89755 *pzErrMsg = sqlite3_mprintf("error during initialization: %s", zErrmsg);
90722 sqlite3_temp_directory = sqlite3_mprintf("%s", zRight);
97007 z = sqlite3_mprintf("%s", colv[i]);
97013 p->zErrMsg = sqlite3_mprintf(
97088 *pzErrMsg = sqlite3_mprintf("%s",res.zErrMsg);
112011 *pzErrMsg = sqlite3_mprintf("invalid uri authority: %.*s",
112136 *pzErrMsg = sqlite3_mprintf("no such %s mode: %s", zModeType, zVal);
112141 *pzErrMsg = sqlite3_mprintf("%s mode not allowed: %s",
112163 *pzErrMsg = sqlite3_mprintf("no such vfs: %s", zVfs);
114765 zCols = sqlite3_mprintf("%Q, ", p->azColumn[0]);
114767 zCols = sqlite3_mprintf("%z%Q, ", zCols, p->azColumn[i]);
114771 zSql = sqlite3_mprintf(
114802 zContentCols = sqlite3_mprintf("docid INTEGER PRIMARY KEY");
114805 zContentCols = sqlite3_mprintf("%z, 'c%d%q'", zContentCols, i, z);
114860 zSql = sqlite3_mprintf("PRAGMA %Q.page_size", p->zDb);
114902 zValue = sqlite3_mprintf("%s", &zCsr[1]);
114925 char *z2 = sqlite3_mprintf("%s%s", *pz, z);
115233 *pzErr = sqlite3_mprintf("unrecognized parameter: %s", z);
115239 *pzErr = sqlite3_mprintf("unrecognized matchinfo: %s", zVal);
115267 *pzErr = sqlite3_mprintf("unrecognized order: %s", zVal);
115302 *pzErr = sqlite3_mprintf("error parsing prefix parameter: %s", zPrefix);
115363 *pzErr = sqlite3_mprintf("missing %s parameter in fts4 constructor", zMiss);
116911 p->base.zErrMsg = sqlite3_mprintf(zErr, zQuery);
116935 zSql = sqlite3_mprintf(zTmpl, p->zReadExprlist, p->zDb, p->zName, zSort);
116938 zSql = sqlite3_mprintf(zTmpl, p->zReadExprlist, p->zDb, p->zName);
117116 char *zErr = sqlite3_mprintf("illegal first argument to %s", zFunc);
119137 *pzErr = sqlite3_mprintf(
119429 pCsr->filter.zTerm = sqlite3_mprintf("%s", zStr);
119436 pCsr->zStop = sqlite3_mprintf("%s", sqlite3_value_text(apVal[iIdx]));
120367 zBuf = sqlite3_mprintf(
120370 zBuf = sqlite3_mprintf("%z %.*s%s", zBuf,
120379 zBuf = sqlite3_mprintf("%zNEAR/%d ", zBuf, pExpr->nNear);
120382 zBuf = sqlite3_mprintf("%zNOT ", zBuf);
120385 zBuf = sqlite3_mprintf("%zAND ", zBuf);
120388 zBuf = sqlite3_mprintf("%zOR ", zBuf);
120392 if( zBuf ) zBuf = sqlite3_mprintf("%z{", zBuf);
120394 if( zBuf ) zBuf = sqlite3_mprintf("%z} {", zBuf);
120397 if( zBuf ) zBuf = sqlite3_mprintf("%z}", zBuf);
121619 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName);
121693 zCopy = sqlite3_mprintf("%s", zArg);
121703 *pzErr = sqlite3_mprintf("unknown tokenizer: %s", z);
121726 *pzErr = sqlite3_mprintf("unknown tokenizer");
121811 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName);
121990 zTest = sqlite3_mprintf("%s_test", zName);
121991 zTest2 = sqlite3_mprintf("%s_internal_test", zName);
122558 zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName, p->zWriteExprlist);
122560 zSql = sqlite3_mprintf(azSql[eStmt], p->zReadExprlist, p->zDb, p->zName);
122562 zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName);
123249 p->zSegmentsTbl = sqlite3_mprintf("%s_segments", p->zName);
126332 *pzErr = sqlite3_mprintf("unrecognized matchinfo request: %c", cArg);
127807 char *zCreate = sqlite3_mprintf(
128438 if( iIdx>0 && 0==(pIdxInfo->idxStr = sqlite3_mprintf("%s", zIdxStr)) ){
129865 char *zSql = sqlite3_mprintf(
129938 char *zCreate = sqlite3_mprintf(
129966 char *zSql = sqlite3_mprintf(azSql[i], zDb, zPrefix);
130024 zSql = sqlite3_mprintf("PRAGMA %Q.page_size", pRtree->zDb);
130033 zSql = sqlite3_mprintf(
130076 *pzErr = sqlite3_mprintf("%s", aErrMsg[iErr]);
130109 *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db));
130111 char *zSql = sqlite3_mprintf("CREATE TABLE x(%s", argv[3]);
130116 zSql = sqlite3_mprintf("%s, %s", zTmp, argv[ii]);
130121 zSql = sqlite3_mprintf("%s);", zTmp);
130127 *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db));
130186 char *zTextNew = sqlite3_mprintf("%s {%s}", zText, zCell);
130190 zText = sqlite3_mprintf("{%s}", zCell);