Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_mprintf

1374 ** of the char** argument point to a string obtained from [sqlite3_mprintf()]
2575 ** ^The sqlite3_mprintf() and sqlite3_vmprintf() routines write their
2623 ** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES('%q')", zText);
2651 ** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES(%Q)", zText);
2663 SQLITE_API char *sqlite3_mprintf(const char*,...);
5442 ** point to an appropriate error message (obtained from [sqlite3_mprintf()])
5678 ** string obtained from [sqlite3_mprintf()] to zErrMsg. The method should
5687 char *zErrMsg; /* Error message from sqlite3_mprintf() */
8534 #define P4_MPRINTF (-11) /* P4 is a string obtained from sqlite3_mprintf() */
20230 SQLITE_API char *sqlite3_mprintf(const char *zFormat, ...){
28622 *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName);
34325 *(char**)pArg = sqlite3_mprintf("win32");
58597 /* For a Real or Integer, use sqlite3_mprintf() to produce the UTF-8
63332 zErr = sqlite3_mprintf(
86450 zBuf = sqlite3_mprintf("%.*f",n,r);
91338 #define sqlite3_mprintf sqlite3_api->mprintf
91647 sqlite3_mprintf,
91857 *pzErrMsg = sqlite3_mprintf("not authorized");
91894 *pzErrMsg = sqlite3_mprintf("error during initialization: %s", zErrmsg);
92898 sqlite3_temp_directory = sqlite3_mprintf("%s", zRight);
99223 z = sqlite3_mprintf("%s", colv[i]);
99229 p->zErrMsg = sqlite3_mprintf(
99304 *pzErrMsg = sqlite3_mprintf("%s",res.zErrMsg);
114382 *pzErrMsg = sqlite3_mprintf("invalid uri authority: %.*s",
114507 *pzErrMsg = sqlite3_mprintf("no such %s mode: %s", zModeType, zVal);
114512 *pzErrMsg = sqlite3_mprintf("%s mode not allowed: %s",
114534 *pzErrMsg = sqlite3_mprintf("no such vfs: %s", zVfs);
117222 zCols = sqlite3_mprintf("%Q, ", p->azColumn[0]);
117224 zCols = sqlite3_mprintf("%z%Q, ", zCols, p->azColumn[i]);
117228 zSql = sqlite3_mprintf(
117263 zContentCols = sqlite3_mprintf("docid INTEGER PRIMARY KEY");
117266 zContentCols = sqlite3_mprintf("%z, 'c%d%q'", zContentCols, i, z);
117269 zContentCols = sqlite3_mprintf("%z, langid", zContentCols, zLanguageid);
117326 zSql = sqlite3_mprintf("PRAGMA %Q.page_size", p->zDb);
117368 zValue = sqlite3_mprintf("%s", &zCsr[1]);
117392 char *z2 = sqlite3_mprintf("%s%s", *pz, z);
117651 zSql = sqlite3_mprintf("SELECT * FROM %Q.%Q", zDb, zTbl);
117809 *pzErr = sqlite3_mprintf("unrecognized parameter: %s", z);
117815 *pzErr = sqlite3_mprintf("unrecognized matchinfo: %s", zVal);
117843 *pzErr = sqlite3_mprintf("unrecognized order: %s", zVal);
117924 *pzErr = sqlite3_mprintf("error parsing prefix parameter: %s", zPrefix);
117989 *pzErr = sqlite3_mprintf("missing %s parameter in fts4 constructor", zMiss);
118195 zSql = sqlite3_mprintf("SELECT %s WHERE rowid = ?", p->zReadExprlist);
119638 p->base.zErrMsg = sqlite3_mprintf(zErr, zQuery);
119660 zSql = sqlite3_mprintf(
119863 char *zErr = sqlite3_mprintf("illegal first argument to %s", zFunc);
121931 *pzErr = sqlite3_mprintf(
122223 pCsr->filter.zTerm = sqlite3_mprintf("%s", zStr);
122230 pCsr->zStop = sqlite3_mprintf("%s", sqlite3_value_text(apVal[iIdx]));
123210 zBuf = sqlite3_mprintf(
123213 zBuf = sqlite3_mprintf("%z %.*s%s", zBuf,
123222 zBuf = sqlite3_mprintf("%zNEAR/%d ", zBuf, pExpr->nNear);
123225 zBuf = sqlite3_mprintf("%zNOT ", zBuf);
123228 zBuf = sqlite3_mprintf("%zAND ", zBuf);
123231 zBuf = sqlite3_mprintf("%zOR ", zBuf);
123235 if( zBuf ) zBuf = sqlite3_mprintf("%z{", zBuf);
123237 if( zBuf ) zBuf = sqlite3_mprintf("%z} {", zBuf);
123240 if( zBuf ) zBuf = sqlite3_mprintf("%z}", zBuf);
124463 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName);
124537 zCopy = sqlite3_mprintf("%s", zArg);
124547 *pzErr = sqlite3_mprintf("unknown tokenizer: %s", z);
124570 *pzErr = sqlite3_mprintf("unknown tokenizer");
124655 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName);
124833 zTest = sqlite3_mprintf("%s_test", zName);
124834 zTest2 = sqlite3_mprintf("%s_internal_test", zName);
125406 zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName, p->zWriteExprlist);
125408 zSql = sqlite3_mprintf(azSql[eStmt], p->zReadExprlist);
125410 zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName);
126197 p->zSegmentsTbl = sqlite3_mprintf("%s_segments", p->zName);
128217 char *zSql = sqlite3_mprintf("SELECT %s" , p->zReadExprlist);
129461 *pzErr = sqlite3_mprintf("unrecognized matchinfo request: %c", cArg);
130937 char *zCreate = sqlite3_mprintf(
131569 if( iIdx>0 && 0==(pIdxInfo->idxStr = sqlite3_mprintf("%s", zIdxStr)) ){
133000 char *zSql = sqlite3_mprintf(
133073 char *zCreate = sqlite3_mprintf(
133101 char *zSql = sqlite3_mprintf(azSql[i], zDb, zPrefix);
133159 zSql = sqlite3_mprintf("PRAGMA %Q.page_size", pRtree->zDb);
133168 zSql = sqlite3_mprintf(
133211 *pzErr = sqlite3_mprintf("%s", aErrMsg[iErr]);
133244 *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db));
133246 char *zSql = sqlite3_mprintf("CREATE TABLE x(%s", argv[3]);
133251 zSql = sqlite3_mprintf("%s, %s", zTmp, argv[ii]);
133256 zSql = sqlite3_mprintf("%s);", zTmp);
133262 *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db));
133321 char *zTextNew = sqlite3_mprintf("%s {%s}", zText, zCell);
133325 zText = sqlite3_mprintf("{%s}", zCell);