Searched refs:appendText (Results 1 – 1 of 1) sorted by relevance
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | vacuum.c | 51 static void appendText(dynStr *p, const char *zText, int nText){ in appendText() function 73 appendText(p, "'", 1); in appendQuoted() 76 appendText(p, &zText[j], i-j+1); in appendQuoted() 78 appendText(p, "'", 1); in appendQuoted() 82 appendText(p, &zText[j], i-j); in appendQuoted() 84 appendText(p, "'", 1); in appendQuoted() 116 appendText(&p->s2, "INSERT INTO ", -1); in vacuumCallback2() 118 appendText(&p->s2, " VALUES", -1); in vacuumCallback2() 120 appendText(&p->s2, zSep, 1); in vacuumCallback2() 123 appendText(&p->s2, "NULL", 4); in vacuumCallback2() [all …]
|