1 write to _sqlstatement
System.Data.Odbc (1)
System\Data\Odbc\OdbcUtils.cs (1)
363_sqlstatement = text;
15 references to _sqlstatement
System.Data.Odbc (15)
System\Data\Odbc\OdbcUtils.cs (15)
390while ((_idx < _len) && char.IsWhiteSpace(_sqlstatement[_idx])) 409if (IsValidNameChar(_sqlstatement[curidx])) 411while ((curidx < _len) && IsValidNameChar(_sqlstatement[curidx])) 413_token.Append(_sqlstatement[curidx]); 419char currentchar = _sqlstatement[curidx]; 456Debug.Assert((_sqlstatement[curidx] == '['), "GetTokenFromQuote: character at starting position must be same as quotechar"); 459_token.Append(_sqlstatement[curidx]); 461if (_sqlstatement[curidx - 1] == ']') 473Debug.Assert((_sqlstatement[curidx] == _quote), "GetTokenFromQuote: character at starting position must be same as quotechar"); 478_token.Append(_sqlstatement[localidx]); // append current character to token 479if (_sqlstatement[localidx] == _quote) 483if (_sqlstatement[localidx - 1] != _escape) 487if (_sqlstatement[localidx + 1] != _quote) 534while ((tempidx < _len) && char.IsWhiteSpace(_sqlstatement[tempidx])) 543if (0 == string.Compare(_sqlstatement, tempidx, tokenString, 0, tokenString.Length, StringComparison.OrdinalIgnoreCase))