12 references to SQL_NO_TOTAL
System.Data.Odbc (12)
System\Data\Odbc\OdbcDataReader.cs (12)
966
Debug.Assert(lengthOrIndicator >= 0 || lengthOrIndicator == ODBC32.
SQL_NO_TOTAL
, "unexpected lengthOrIndicator value");
968
if (lengthOrIndicator <= cbMaxData && (ODBC32.
SQL_NO_TOTAL
!= lengthOrIndicator))
986
int cbBuilderInitialCapacity = (lengthOrIndicator == ODBC32.
SQL_NO_TOTAL
) ? cbMaxData : lengthOrIndicator;
992
int cbMissing = (ODBC32.
SQL_NO_TOTAL
== lengthOrIndicator) ? -1 : lengthOrIndicator - cbActual;
1009
Debug.Assert(lengthOrIndicator >= 0 || lengthOrIndicator == ODBC32.
SQL_NO_TOTAL
, "unexpected lengthOrIndicator value");
1011
if (ODBC32.
SQL_NO_TOTAL
!= lengthOrIndicator)
1401
else if (ODBC32.
SQL_NO_TOTAL
== cbTotal)
1473
if (ODBC32.
SQL_NO_TOTAL
!= cbActual)
1499
junkSize = (ODBC32.
SQL_NO_TOTAL
!= cbActual) ? cbActual : cbBufferLen;
1505
while ((ODBC32.
SQL_NO_TOTAL
== cbActual) && GetData(i, ODBC32.SQL_C.BINARY, cbBufferLen, out cbActual));
1749
if ((int)cbActual == ODBC32.
SQL_NO_TOTAL
)
1769
if (cbActual == (IntPtr)ODBC32.
SQL_NO_TOTAL
)