Home | History | Annotate | Download | only in dist

Lines Matching refs:quote

19963         char q = ((xtype==etSQLESCAPE3)?'"':'\'');   /* Quote character */
21214 ** the quote characters. The conversion is done in-place. If the
21215 ** input does not begin with a quote character, then this routine
21230 char quote;
21233 quote = z[0];
21234 switch( quote ){
21238 case '[': quote = ']'; break; /* For MS SqlServer compatibility */
21242 if( z[i]==quote ){
21243 if( z[i+1]==quote ){
21244 z[j++] = quote;
86990 ** Implementation of the QUOTE() function. This function takes a single
86994 ** single-quote escapes.
87707 FUNCTION(quote, 1, 0, 0, quoteFunc ),
101358 "SELECT 'INSERT INTO vacuum_db.' || quote(name) "
101359 "|| ' SELECT * FROM main.' || quote(name) || ';'"
101369 "SELECT 'DELETE FROM vacuum_db.' || quote(name) || ';' "
101374 "SELECT 'INSERT INTO vacuum_db.' || quote(name) "
101375 "|| ' SELECT * FROM main.' || quote(name) || ';' "
117036 ** the quote characters. The conversion is done in-place. If the
117037 ** input does not begin with a quote character, then this routine
117049 char quote; /* Quote character (if any ) */
117051 quote = z[0];
117052 if( quote=='[' || quote=='\'' || quote=='"' || quote=='`' ){
117056 /* If the first byte was a '[', then the close-quote character is a ']' */
117057 if( quote=='[' ) quote = ']';
117060 if( z[iIn]==quote ){
117061 if( z[iIn+1]!=quote ) break;
117062 z[iOut++] = quote;
117394 ** with all double quote characters escaped. For example:
122567 ** that appeared as part of an fts3 query expression. Neither quote character
122766 ** parenthesis, a quote character, or EOF.
122811 ** search for the closing quote and pass the whole string to getNextString()
122813 ** a quote character embedded in a string.