Home | History | Annotate | Download | only in orig

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;
86979 ** Implementation of the QUOTE() function. This function takes a single
86983 ** single-quote escapes.
87696 FUNCTION(quote, 1, 0, 0, quoteFunc ),
101347 "SELECT 'INSERT INTO vacuum_db.' || quote(name) "
101348 "|| ' SELECT * FROM main.' || quote(name) || ';'"
101358 "SELECT 'DELETE FROM vacuum_db.' || quote(name) || ';' "
101363 "SELECT 'INSERT INTO vacuum_db.' || quote(name) "
101364 "|| ' SELECT * FROM main.' || quote(name) || ';' "
117010 ** the quote characters. The conversion is done in-place. If the
117011 ** input does not begin with a quote character, then this routine
117023 char quote; /* Quote character (if any ) */
117025 quote = z[0];
117026 if( quote=='[' || quote=='\'' || quote=='"' || quote=='`' ){
117030 /* If the first byte was a '[', then the close-quote character is a ']' */
117031 if( quote=='[' ) quote = ']';
117034 if( z[iIn]==quote ){
117035 if( z[iIn+1]!=quote ) break;
117036 z[iOut++] = quote;
117368 ** with all double quote characters escaped. For example:
122538 ** that appeared as part of an fts3 query expression. Neither quote character
122737 ** parenthesis, a quote character, or EOF.
122782 ** search for the closing quote and pass the whole string to getNextString()
122784 ** a quote character embedded in a string.