1 write to _sqlstatement
System.Data (1)
fx\src\data\System\Data\Odbc\OdbcUtils.cs (1)
354_sqlstatement = text;
15 references to _sqlstatement
System.Data (15)
fx\src\data\System\Data\Odbc\OdbcUtils.cs (15)
376while((_idx < _len) && Char.IsWhiteSpace(_sqlstatement[_idx])) { 392if (IsValidNameChar(_sqlstatement[curidx])) { 393while ((curidx < _len) && IsValidNameChar(_sqlstatement[curidx])) { 394_token.Append(_sqlstatement[curidx]); 399char currentchar = _sqlstatement[curidx]; 432Debug.Assert((_sqlstatement[curidx] == '['), "GetTokenFromQuote: character at starting position must be same as quotechar"); 434_token.Append(_sqlstatement[curidx]); 436if (_sqlstatement[curidx-1] == ']') 447Debug.Assert((_sqlstatement[curidx] == _quote), "GetTokenFromQuote: character at starting position must be same as quotechar"); 451_token.Append(_sqlstatement[localidx]); // append current character to token 452if (_sqlstatement[localidx] == _quote) { 454if (_sqlstatement[localidx-1] != _escape) { // if it's not escape we look at the following char 456if (_sqlstatement[localidx+1] != _quote) { 496while((tempidx < _len) && Char.IsWhiteSpace(_sqlstatement[tempidx])) { 503if (0 == String.Compare(_sqlstatement, tempidx, tokenString, 0, tokenString.Length, StringComparison.OrdinalIgnoreCase)) {