Home | History | Annotate | Download | only in dist

Lines Matching refs:quote

432 #define MODE_Csv      7  /* Quote strings, numbers are plain */
838 ** the name of the table given. Escape any quote characters in the
879 ** If the third argument, quote, is not '\0', then it is used as a
880 ** quote character for zAppend.
882 static char *appendText(char *zIn, char const *zAppend, char quote){
889 if( quote ){
892 if( zAppend[i]==quote ) len++;
901 if( quote ){
903 *zCsr++ = quote;
906 if( zAppend[i]==quote ) *zCsr++ = quote;
908 *zCsr++ = quote;
1245 zSelect = appendText(zSelect, "quote(", 0);