DataRow.IsNull 方法

定义

获取一个值,该值指示指定的列是否包含 null 值。

重载

IsNull(DataColumn)

获取一个值,该值指示指定的 DataColumn 是否包含 null 值。

IsNull(Int32)

获取一个值,该值指示位于指定索引处的列是否包含 null 值。

IsNull(String)

获取一个值,该值指示指定的列是否包含 null 值。

IsNull(DataColumn, DataRowVersion)

获取一个值,该值指示指定的 DataColumnDataRowVersion 是否包含 null 值。

IsNull(DataColumn)

Source:
DataRow.cs
Source:
DataRow.cs
Source:
DataRow.cs

获取一个值,该值指示指定的 DataColumn 是否包含 null 值。

public:
 bool IsNull(System::Data::DataColumn ^ column);
public bool IsNull (System.Data.DataColumn column);
member this.IsNull : System.Data.DataColumn -> bool
Public Function IsNull (column As DataColumn) As Boolean

参数

返回

如果该列包含 null 值,则为 true;否则为 false

例外

columnnull

此行不属于该表。

示例

以下示例打印 的每个表中每一行的每一列 DataSet。 如果行设置为 null 值,则不打印该值。

Private Sub PrintRows(dataSet As DataSet)
    Dim table As DataTable
    Dim column As DataColumn
    Dim row As DataRow
    For Each table In dataSet.Tables
       For Each row In table.Rows
          For Each column In table.Columns
             If Not row.IsNull(column) Then 
                Console.WriteLine(row(column).ToString())
             End If
          Next column
       Next row
     Next table
End Sub

适用于

IsNull(Int32)

Source:
DataRow.cs
Source:
DataRow.cs
Source:
DataRow.cs

获取一个值,该值指示位于指定索引处的列是否包含 null 值。

public:
 bool IsNull(int columnIndex);
public bool IsNull (int columnIndex);
member this.IsNull : int -> bool
Public Function IsNull (columnIndex As Integer) As Boolean

参数

columnIndex
Int32

列的从零开始的索引。

返回

如果该列包含 null 值,则为 true;否则为 false

例外

没有列对应于 columnIndex 指定的索引。

此行不属于该表。

示例

以下示例将列的值更改为 null 值,然后使用 IsNull 方法确定该值是否为 null。

Private Sub IsValNull()
    ' Assuming the DataGrid is bound to a DataTable.
    Dim table As DataTable = CType(DataGrid1.DataSource, DataTable)
    Dim row As DataRow = table.Rows(datagrid1.CurrentCell.RowNumber)
    row.BeginEdit
    row(1) = System.DBNull.Value
    row.EndEdit
    row.AcceptChanges
    Console.WriteLine(row.IsNull(1))
End Sub

适用于

IsNull(String)

Source:
DataRow.cs
Source:
DataRow.cs
Source:
DataRow.cs

获取一个值,该值指示指定的列是否包含 null 值。

public:
 bool IsNull(System::String ^ columnName);
public bool IsNull (string columnName);
member this.IsNull : string -> bool
Public Function IsNull (columnName As String) As Boolean

参数

columnName
String

列的名称。

返回

如果该列包含 null 值,则为 true;否则为 false

例外

找不到由 columnName 指定的列。

columnNamenull

此行不属于该表。

示例

以下示例将列的值更改为 null 值,然后使用 IsNull 方法确定该值是否为 null。

 Private Sub IsValNull()
    ' Assuming the DataGrid is bound to a DataTable.
    Dim table As DataTable = CType(DataGrid1.DataSource, DataTable)
    Dim row As DataRow = table.Rows(datagrid1.CurrentCell.RowNumber)
    row.BeginEdit
    row("FirstName") = System.DBNull.Value
    row.EndEdit
    row.AcceptChanges
    Console.WriteLine(row.IsNull("FirstName"))
End Sub

适用于

IsNull(DataColumn, DataRowVersion)

Source:
DataRow.cs
Source:
DataRow.cs
Source:
DataRow.cs

获取一个值,该值指示指定的 DataColumnDataRowVersion 是否包含 null 值。

public:
 bool IsNull(System::Data::DataColumn ^ column, System::Data::DataRowVersion version);
public bool IsNull (System.Data.DataColumn column, System.Data.DataRowVersion version);
member this.IsNull : System.Data.DataColumn * System.Data.DataRowVersion -> bool
Public Function IsNull (column As DataColumn, version As DataRowVersion) As Boolean

参数

version
DataRowVersion

DataRowVersion 值之一,用于指定行版本。 可能值为 DefaultOriginalCurrentProposed

返回

如果该列包含 null 值,则为 true;否则为 false

例外

columnnull

此行不属于该表。

该行没有请求的 version

适用于