Home | History | Annotate | Download | only in dist

Lines Matching defs:appendText

1747 static char *appendText(char *zIn, char const *zAppend, char quote){
1997 zTableInfo = appendText(zTableInfo, "PRAGMA table_info(", 0);
1998 zTableInfo = appendText(zTableInfo, zTable, '"');
1999 zTableInfo = appendText(zTableInfo, ");", 0);
2007 zSelect = appendText(zSelect, "SELECT 'INSERT INTO ' || ", 0);
2008 zTmp = appendText(zTmp, zTable, '"');
2010 zSelect = appendText(zSelect, zTmp, '\'');
2012 zSelect = appendText(zSelect, " || ' VALUES(' || ", 0);
2016 zSelect = appendText(zSelect, "quote(", 0);
2017 zSelect = appendText(zSelect, zText, '"');
2020 zSelect = appendText(zSelect, ") || ',' || ", 0);
2022 zSelect = appendText(zSelect, ") ", 0);
2031 zSelect = appendText(zSelect, "|| ')' FROM ", 0);
2032 zSelect = appendText(zSelect, zTable, '"');
2036 zSelect = appendText(zSelect, " ORDER BY rowid DESC", 0);