Lines Matching defs:quote

33828 ** the quote characters.  The conversion is done in-place.  If the
33829 ** input does not begin with a quote character, then this routine
33844 char quote;
33847 quote = z[0];
33848 if( !sqlite3Isquote(quote) ) return;
33849 if( quote=='[' ) quote = ']';
33852 if( z[i]==quote ){
33853 if( z[i+1]==quote ){
33854 z[j++] = quote;
112930 int bQuote; /* True to quote the new name */
113511 int bQuote /* True to always quote token */
113571 ** original token within the input SQL was a single quote ('), then
125835 ** The quote(X) function returns the text of an SQL literal which is the
127021 FUNCTION(quote, 1, 0, 0, quoteFunc ),
149822 "SELECT'INSERT INTO vacuum_db.'||quote(name)"
149823 "||' SELECT*FROM\"%w\".'||quote(name)"
180093 ** the quote characters. The conversion is done in-place. If the
180094 ** input does not begin with a quote character, then this routine
180106 char quote; /* Quote character (if any ) */
180108 quote = z[0];
180109 if( quote=='[' || quote=='\'' || quote=='"' || quote=='`' ){
180113 /* If the first byte was a '[', then the close-quote character is a ']' */
180114 if( quote=='[' ) quote = ']';
180117 if( z[iIn]==quote ){
180118 if( z[iIn+1]!=quote ) break;
180119 z[iOut++] = quote;
180478 ** with all double quote characters escaped. For example:
186584 ** that appeared as part of an fts3 query expression. Neither quote character
186774 ** parenthesis, a quote character, or EOF.
186798 ** search for the closing quote and pass the whole string to getNextString()
186800 ** a quote character embedded in a string.
210331 char *zSelect = rbuObjIterGetPkList(p, pIter, "quote(", "||','||", ")");
210422 zSelect = rbuMPrintf(p, "%z%s quote(\"rbu_imp_%d%w\")",
217656 ** with any embedded quote characters escaped to the buffer. No
217664 const char *zStr, /* String to quote, escape and append */
225538 ** to be an open-quote character (see function fts5_isopenquote()).
225540 ** This function searches for the corresponding close-quote character within
225544 ** If the close-quote is found, the value returned is the byte offset of
225545 ** the character immediately following it. Or, if the close-quote is not
225555 /* Set stack variable q to the close-quote character */
225562 /* Character iIn was the close quote. */
225566 /* Character iIn and iIn+1 form an escaped quote character. Skip
225567 ** the input cursor past both and copy a single quote character
225583 ** the quote characters. The conversion is done in-place. If the
225584 ** input does not begin with a quote character, then this routine
225595 char quote; /* Quote character (if any ) */
225598 quote = z[0];
225599 if( quote=='[' || quote=='\'' || quote=='"' || quote=='`' ){
225813 ** to find close-quote character).
225822 ** set if a parse error (failed to find close quote) occurs.
246162 sql = sqlite3_mprintf("SELECT 'INSERT INTO %s.' || quote(name) || ' SELECT * FROM main.' || quote(name) || ';' FROM main.sqlite_master WHERE type = 'table' AND name!='sqlite_sequence' AND rootpage>0;", dbName);
246172 sql = sqlite3_mprintf("SELECT 'DELETE FROM %s.' || quote(name) || ';' FROM %s.sqlite_master WHERE name='sqlite_sequence';", dbName, dbName);
246182 sql = sqlite3_mprintf("SELECT 'INSERT INTO %s.' || quote(name) || ' SELECT * FROM main.' || quote(name) || ';' FROM %s.sqlite_master WHERE name=='sqlite_sequence';", dbName, dbName);