Home | History | Annotate | Download | only in orig

Lines Matching defs:appendText

901 static char *appendText(char *zIn, char const *zAppend, char quote){
1292 zTableInfo = appendText(zTableInfo, "PRAGMA table_info(", 0);
1293 zTableInfo = appendText(zTableInfo, zTable, '"');
1294 zTableInfo = appendText(zTableInfo, ");", 0);
1302 zSelect = appendText(zSelect, "SELECT 'INSERT INTO ' || ", 0);
1308 zTmp = appendText(zTmp, zTable, zTable[kk] ? '"' : 0);
1310 zSelect = appendText(zSelect, zTmp, '\'');
1312 zSelect = appendText(zSelect, " || ' VALUES(' || ", 0);
1316 zSelect = appendText(zSelect, "quote(", 0);
1317 zSelect = appendText(zSelect, zText, '"');
1320 zSelect = appendText(zSelect, "), ", 0);
1322 zSelect = appendText(zSelect, ") ", 0);
1331 zSelect = appendText(zSelect, "|| ')' FROM ", 0);
1332 zSelect = appendText(zSelect, zTable, '"');
1336 zSelect = appendText(zSelect, " ORDER BY rowid DESC", 0);