Returns a value indicating whether the column contains NULL values.
Visual Basic Public Overrides Function IsDBNull( _ ByVal ordinal As Integer _ ) As Boolean
C# public override bool IsDBNull( int ordinal );
ordinal The zero-based column ordinal.
Returns true if the specified column value is equivalent to DBNull. Otherwise, it returns false.
Call this method to check for NULL column values before calling the typed get methods (for example, GetByte, GetChar, and so on) to avoid raising an exception.
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |