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
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.