Lines Matching refs:sqlite3_mprintf

2440 ** ^The sqlite3_mprintf() and sqlite3_vmprintf() routines write their
2488 ** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES('%q')", zText);
2516 ** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES(%Q)", zText);
2528 SQLITE_API char *sqlite3_mprintf(const char*,...);
5072 ** point to an appropriate error message (obtained from [sqlite3_mprintf()])
5303 ** string obtained from [sqlite3_mprintf()] to zErrMsg. The method should
5312 char *zErrMsg; /* Error message from sqlite3_mprintf() */
7983 #define P4_MPRINTF (-11) /* P4 is a string obtained from sqlite3_mprintf() */
19407 SQLITE_API char *sqlite3_mprintf(const char *zFormat, ...){
56185 /* For a Real or Integer, use sqlite3_mprintf() to produce the UTF-8
60883 zErr = sqlite3_mprintf(
81982 zBuf = sqlite3_mprintf("%.*f",n,r);
86787 #define sqlite3_mprintf sqlite3_api->mprintf
87089 sqlite3_mprintf,
87296 *pzErrMsg = sqlite3_mprintf("not authorized");
87332 *pzErrMsg = sqlite3_mprintf("error during initialization: %s", zErrmsg);
88297 sqlite3_temp_directory = sqlite3_mprintf("%s", zRight);
94459 z = sqlite3_mprintf("%s", colv[i]);
94465 p->zErrMsg = sqlite3_mprintf(
94540 *pzErrMsg = sqlite3_mprintf("%s",res.zErrMsg);
110749 zSql = sqlite3_mprintf("SELECT rootpage FROM %s.sqlite_master "
110784 char *zSql = sqlite3_mprintf("PRAGMA %s.encoding", zDb);
112268 char *zCreateSql = sqlite3_mprintf("CREATE TABLE x(");
112283 *pzErr = sqlite3_mprintf("unable to parse column %d", i);
112293 zCreateSql = sqlite3_mprintf("%z%.*s %.*s%s%s",
112334 *pzErr = sqlite3_mprintf("recover table must be in temp database");
112340 *pzErr = sqlite3_mprintf("no columns specified");
112362 *pzErr = sqlite3_mprintf("ill-formed table specifier");
112382 *pzErr = sqlite3_mprintf("unable to find backing table");
113590 zCols = sqlite3_mprintf("%Q, ", p->azColumn[0]);
113592 zCols = sqlite3_mprintf("%z%Q, ", zCols, p->azColumn[i]);
113596 zSql = sqlite3_mprintf(
113627 zContentCols = sqlite3_mprintf("docid INTEGER PRIMARY KEY");
113630 zContentCols = sqlite3_mprintf("%z, 'c%d%q'", zContentCols, i, z);
113685 zSql = sqlite3_mprintf("PRAGMA %Q.page_size", p->zDb);
113727 zValue = sqlite3_mprintf("%s", &zCsr[1]);
113750 char *z2 = sqlite3_mprintf("%s%s", *pz, z);
113956 *pzErr = sqlite3_mprintf("unrecognized matchinfo: %s", zVal);
113966 *pzErr = sqlite3_mprintf("unrecognized parameter: %s", z);
114042 *pzErr = sqlite3_mprintf("missing %s parameter in fts4 constructor", zMiss);
116143 p->base.zErrMsg = sqlite3_mprintf("malformed MATCH expression: [%s]",
116165 zSql = sqlite3_mprintf(zSql, p->zReadExprlist, p->zDb, p->zName);
116406 char *zErr = sqlite3_mprintf("illegal first argument to %s", zFunc);
116842 *pzErr = sqlite3_mprintf(
117132 pCsr->filter.zTerm = sqlite3_mprintf("%s", zStr);
117139 pCsr->zStop = sqlite3_mprintf("%s", sqlite3_value_text(apVal[iIdx]));
118037 zBuf = sqlite3_mprintf(
118040 zBuf = sqlite3_mprintf("%z %.*s%s", zBuf,
118049 zBuf = sqlite3_mprintf("%zNEAR/%d ", zBuf, pExpr->nNear);
118052 zBuf = sqlite3_mprintf("%zNOT ", zBuf);
118055 zBuf = sqlite3_mprintf("%zAND ", zBuf);
118058 zBuf = sqlite3_mprintf("%zOR ", zBuf);
118062 if( zBuf ) zBuf = sqlite3_mprintf("%z{", zBuf);
118064 if( zBuf ) zBuf = sqlite3_mprintf("%z} {", zBuf);
118067 if( zBuf ) zBuf = sqlite3_mprintf("%z}", zBuf);
119285 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName);
119359 zCopy = sqlite3_mprintf("%s", zArg);
119369 *pzErr = sqlite3_mprintf("unknown tokenizer: %s", z);
119392 *pzErr = sqlite3_mprintf("unknown tokenizer");
119475 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName);
119654 zTest = sqlite3_mprintf("%s_test", zName);
119655 zTest2 = sqlite3_mprintf("%s_internal_test", zName);
120166 zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName, p->zWriteExprlist);
120168 zSql = sqlite3_mprintf(azSql[eStmt], p->zReadExprlist, p->zDb, p->zName);
120170 zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName);
120785 p->zSegmentsTbl = sqlite3_mprintf("%s_segments", p->zName);
123559 *pzErr = sqlite3_mprintf("unrecognized matchinfo request: %c", cArg);
125046 char *zCreate = sqlite3_mprintf(
125677 if( iIdx>0 && 0==(pIdxInfo->idxStr = sqlite3_mprintf("%s", zIdxStr)) ){
127067 char *zSql = sqlite3_mprintf(
127137 char *zCreate = sqlite3_mprintf(
127165 char *zSql = sqlite3_mprintf(azSql[i], zDb, zPrefix);
127223 zSql = sqlite3_mprintf("PRAGMA %Q.page_size", pRtree->zDb);
127232 zSql = sqlite3_mprintf(
127275 *pzErr = sqlite3_mprintf("%s", aErrMsg[iErr]);
127306 *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db));
127308 char *zSql = sqlite3_mprintf("CREATE TABLE x(%s", argv[3]);
127313 zSql = sqlite3_mprintf("%s, %s", zTmp, argv[ii]);
127318 zSql = sqlite3_mprintf("%s);", zTmp);
127324 *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db));
127383 char *zTextNew = sqlite3_mprintf("%s {%s}", zText, zCell);
127387 zText = sqlite3_mprintf("{%s}", zCell);