DbDataRecord.IsDBNull(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Used to indicate nonexistent values.
public:
abstract bool IsDBNull(int i);
public:
virtual bool IsDBNull(int i);
public abstract bool IsDBNull (int i);
public bool IsDBNull (int i);
abstract member IsDBNull : int -> bool
abstract member IsDBNull : int -> bool
override this.IsDBNull : int -> bool
Public MustOverride Function IsDBNull (i As Integer) As Boolean
Public Function IsDBNull (i As Integer) As Boolean
Parameters
- i
- Int32
The column ordinal.
Returns
true
if the specified column is equivalent to DBNull; otherwise false
.
Implements
Remarks
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 error.
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.