Home | History | Annotate | Download | only in dist

Lines Matching refs:quote

437 #define MODE_Csv      7  /* Quote strings, numbers are plain */
843 ** the name of the table given. Escape any quote characters in the
884 ** If the third argument, quote, is not '\0', then it is used as a
885 ** quote character for zAppend.
887 static char *appendText(char *zIn, char const *zAppend, char quote){
894 if( quote ){
897 if( zAppend[i]==quote ) len++;
906 if( quote ){
908 *zCsr++ = quote;
911 if( zAppend[i]==quote ) *zCsr++ = quote;
913 *zCsr++ = quote;
1250 zSelect = appendText(zSelect, "quote(", 0);