Lines Matching refs:quote
496 #define MODE_Csv 7 /* Quote strings, numbers are plain */
932 ** the name of the table given. Escape any quote characters in the
973 ** If the third argument, quote, is not '\0', then it is used as a
974 ** quote character for zAppend.
976 static char *appendText(char *zIn, char const *zAppend, char quote){
983 if( quote ){
986 if( zAppend[i]==quote ) len++;
995 if( quote ){
997 *zCsr++ = quote;
1000 if( zAppend[i]==quote ) *zCsr++ = quote;
1002 *zCsr++ = quote;
1510 /* Always quote the table name, even if it appears to be pure ascii,
1521 zSelect = appendText(zSelect, "quote(", 0);