Home | History | Annotate | Download | only in orig

Lines Matching refs:quote

21170         char q = ((xtype==etSQLESCAPE3)?'"':'\'');   /* Quote character */
22423 ** the quote characters. The conversion is done in-place. If the
22424 ** input does not begin with a quote character, then this routine
22439 char quote;
22442 quote = z[0];
22443 switch( quote ){
22447 case '[': quote = ']'; break; /* For MS SqlServer compatibility */
22452 if( z[i]==quote ){
22453 if( z[i+1]==quote ){
22454 z[j++] = quote;
92583 ** Implementation of the QUOTE() function. This function takes a single
92587 ** single-quote escapes.
93372 FUNCTION(quote, 1, 0, 0, quoteFunc ),
109213 "SELECT 'INSERT INTO vacuum_db.' || quote(name) "
109214 "|| ' SELECT * FROM main.' || quote(name) || ';'"
109224 "SELECT 'DELETE FROM vacuum_db.' || quote(name) || ';' "
109229 "SELECT 'INSERT INTO vacuum_db.' || quote(name) "
109230 "|| ' SELECT * FROM main.' || quote(name) || ';' "
127235 ** the quote characters. The conversion is done in-place. If the
127236 ** input does not begin with a quote character, then this routine
127248 char quote; /* Quote character (if any ) */
127250 quote = z[0];
127251 if( quote=='[' || quote=='\'' || quote=='"' || quote=='`' ){
127255 /* If the first byte was a '[', then the close-quote character is a ']' */
127256 if( quote=='[' ) quote = ']';
127259 if( z[iIn]==quote ){
127260 if( z[iIn+1]!=quote ) break;
127261 z[iOut++] = quote;
127603 ** with all double quote characters escaped. For example:
133451 ** that appeared as part of an fts3 query expression. Neither quote character
133644 ** parenthesis, a quote character, or EOF.
133668 ** search for the closing quote and pass the whole string to getNextString()
133670 ** a quote character embedded in a string.