Home | History | Annotate | Download | only in dist

Lines Matching full:quote

582 #define MODE_Csv      7  /* Quote strings, numbers are plain */
1065 ** the name of the table given. Escape any quote characters in the
1106 ** If the third argument, quote, is not '\0', then it is used as a
1107 ** quote character for zAppend.
1109 static char *appendText(char *zIn, char const *zAppend, char quote){
1116 if( quote ){
1119 if( zAppend[i]==quote ) len++;
1128 if( quote ){
1130 *zCsr++ = quote;
1133 if( zAppend[i]==quote ) *zCsr++ = quote;
1135 *zCsr++ = quote;
1707 /* Always quote the table name, even if it appears to be pure ascii,
1718 zSelect = appendText(zSelect, "quote(", 0);