Home | History | Annotate | Download | only in orig

Lines Matching refs:quote

491 #define MODE_Csv      7  /* Quote strings, numbers are plain */
927 ** the name of the table given. Escape any quote characters in the
968 ** If the third argument, quote, is not '\0', then it is used as a
969 ** quote character for zAppend.
971 static char *appendText(char *zIn, char const *zAppend, char quote){
978 if( quote ){
981 if( zAppend[i]==quote ) len++;
990 if( quote ){
992 *zCsr++ = quote;
995 if( zAppend[i]==quote ) *zCsr++ = quote;
997 *zCsr++ = quote;
1505 /* Always quote the table name, even if it appears to be pure ascii,
1516 zSelect = appendText(zSelect, "quote(", 0);