Home | History | Annotate | Download | only in dist

Lines Matching refs:quote

18879         char q = ((xtype==etSQLESCAPE3)?'"':'\'');   /* Quote character */
20121 ** the quote characters. The conversion is done in-place. If the
20122 ** input does not begin with a quote character, then this routine
20137 char quote;
20140 quote = z[0];
20141 switch( quote ){
20145 case '[': quote = ']'; break; /* For MS SqlServer compatibility */
20149 if( z[i]==quote ){
20150 if( z[i+1]==quote ){
20151 z[j++] = quote;
80466 ** Implementation of the QUOTE() function. This function takes a single
80470 ** single-quote escapes.
81184 FUNCTION(quote, 1, 0, 0, quoteFunc ),
94461 "SELECT 'INSERT INTO vacuum_db.' || quote(name) "
94462 "|| ' SELECT * FROM main.' || quote(name) || ';'"
94472 "SELECT 'DELETE FROM vacuum_db.' || quote(name) || ';' "
94477 "SELECT 'INSERT INTO vacuum_db.' || quote(name) "
94478 "|| ' SELECT * FROM main.' || quote(name) || ';' "
108735 ** the quote characters. The conversion is done in-place. If the
108736 ** input does not begin with a quote character, then this routine
108748 char quote; /* Quote character (if any ) */
108750 quote = z[0];
108751 if( quote=='[' || quote=='\'' || quote=='"' || quote=='`' ){
108755 /* If the first byte was a '[', then the close-quote character is a ']' */
108756 if( quote=='[' ) quote = ']';
108759 if( z[iIn]==quote ){
108760 if( z[iIn+1]!=quote ) break;
108761 z[iOut++] = quote;
112078 ** that appeared as part of an fts3 query expression. Neither quote character
112255 ** parenthesis, a quote character, or EOF.
112300 ** search for the closing quote and pass the whole string to getNextString()
112302 ** a quote character embedded in a string.