Searched refs:zBind (Results 1 – 2 of 2) sorted by relevance
| /freebsd-14.2/contrib/sqlite3/ |
| H A D | shell.c | 17766 char *zBind = 0; in recoverInsertStmt() local 17780 zBind = recoverMPrintf(p, "%zquote(?%d)", zBind, pTab->iRowidBind); in recoverInsertStmt() 17782 zBind = recoverMPrintf(p, "%z?%d", zBind, pTab->iRowidBind); in recoverInsertStmt() 17797 zBind = recoverMPrintf(p, in recoverInsertStmt() 17802 zBind = recoverMPrintf(p, "%z%s?%d", zBind, zSep, pTab->aCol[ii].iBind); in recoverInsertStmt() 17810 zSql, zBind in recoverInsertStmt() 17818 sqlite3_free(zBind); in recoverInsertStmt() 17918 char *zBind = 0; in recoverLostAndFoundInsert() local 17923 zBind = recoverMPrintf(p, "%z%s?", zBind, zBind?", ":"", ii); in recoverLostAndFoundInsert() 17931 zBind = recoverMPrintf(p, "%z%squote(?)", zBind, zSep); in recoverLostAndFoundInsert() [all …]
|
| H A D | sqlite3.c | 220298 if( zBind ){ 220461 char *zBind = 0; 220470 zBind = rbuObjIterGetBindlist(p, nBind); 220552 sqlite3_free(zBind); 252827 char *zBind; 252830 zBind = sqlite3_malloc64(1 + nCol*2); 252831 if( zBind ){ 252833 zBind[i*2] = '?'; 252834 zBind[i*2 + 1] = ','; 252836 zBind[i*2-1] = '\0'; [all …]
|