Home | History | Annotate | Download | only in dist

Lines Matching refs:quote

457 #define MODE_Csv      7  /* Quote strings, numbers are plain */
862 ** the name of the table given. Escape any quote characters in the
903 ** If the third argument, quote, is not '\0', then it is used as a
904 ** quote character for zAppend.
906 static char *appendText(char *zIn, char const *zAppend, char quote){
913 if( quote ){
916 if( zAppend[i]==quote ) len++;
925 if( quote ){
927 *zCsr++ = quote;
930 if( zAppend[i]==quote ) *zCsr++ = quote;
932 *zCsr++ = quote;
1321 zSelect = appendText(zSelect, "quote(", 0);