Home | History | Annotate | Download | only in dist

Lines Matching defs:appendText

906 static char *appendText(char *zIn, char const *zAppend, char quote){
1297 zTableInfo = appendText(zTableInfo, "PRAGMA table_info(", 0);
1298 zTableInfo = appendText(zTableInfo, zTable, '"');
1299 zTableInfo = appendText(zTableInfo, ");", 0);
1307 zSelect = appendText(zSelect, "SELECT 'INSERT INTO ' || ", 0);
1313 zTmp = appendText(zTmp, zTable, zTable[kk] ? '"' : 0);
1315 zSelect = appendText(zSelect, zTmp, '\'');
1317 zSelect = appendText(zSelect, " || ' VALUES(' || ", 0);
1321 zSelect = appendText(zSelect, "quote(", 0);
1322 zSelect = appendText(zSelect, zText, '"');
1325 zSelect = appendText(zSelect, "), ", 0);
1327 zSelect = appendText(zSelect, ") ", 0);
1336 zSelect = appendText(zSelect, "|| ')' FROM ", 0);
1337 zSelect = appendText(zSelect, zTable, '"');
1341 zSelect = appendText(zSelect, " ORDER BY rowid DESC", 0);