Home | History | Annotate | Download | only in orig

Lines Matching refs:quote

452 #define MODE_Csv      7  /* Quote strings, numbers are plain */
857 ** the name of the table given. Escape any quote characters in the
898 ** If the third argument, quote, is not '\0', then it is used as a
899 ** quote character for zAppend.
901 static char *appendText(char *zIn, char const *zAppend, char quote){
908 if( quote ){
911 if( zAppend[i]==quote ) len++;
920 if( quote ){
922 *zCsr++ = quote;
925 if( zAppend[i]==quote ) *zCsr++ = quote;
927 *zCsr++ = quote;
1316 zSelect = appendText(zSelect, "quote(", 0);