Searched refs:appendText (Results 1 – 1 of 1) sorted by relevance
/titanic_41/usr/src/lib/libsqlite/src/ |
H A D | vacuum.c | 54 static void appendText(dynStr *p, const char *zText, int nText){ in appendText() function 76 appendText(p, "'", 1); in appendQuoted() 79 appendText(p, &zText[j], i-j+1); in appendQuoted() 81 appendText(p, "'", 1); in appendQuoted() 85 appendText(p, &zText[j], i-j); in appendQuoted() 87 appendText(p, "'", 1); in appendQuoted() 119 appendText(&p->s2, "INSERT INTO ", -1); in vacuumCallback2() 121 appendText(&p->s2, " VALUES", -1); in vacuumCallback2() 123 appendText(&p->s2, zSep, 1); in vacuumCallback2() 126 appendText(&p->s2, "NULL", 4); in vacuumCallback2() [all …]
|