Lines Matching full:quote
576 #define MODE_Csv 7 /* Quote strings, numbers are plain */
1059 ** the name of the table given. Escape any quote characters in the
1100 ** If the third argument, quote, is not '\0', then it is used as a
1101 ** quote character for zAppend.
1103 static char *appendText(char *zIn, char const *zAppend, char quote){
1110 if( quote ){
1113 if( zAppend[i]==quote ) len++;
1122 if( quote ){
1124 *zCsr++ = quote;
1127 if( zAppend[i]==quote ) *zCsr++ = quote;
1129 *zCsr++ = quote;
1701 /* Always quote the table name, even if it appears to be pure ascii,
1712 zSelect = appendText(zSelect, "quote(", 0);