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