How do I find out if a column exists in a VB.Net DataRow

后端 未结 4 1013
暖寄归人
暖寄归人 2021-02-01 00:44

I am reading an XML file into a DataSet and need to get the data out of the DataSet. Since it is a user-editable config file the fields may or may not be there. To handle missin

相关标签:
4条回答
  • 2021-02-01 01:12

    You can use DataSet.Tables(0).Columns.Contains(name) to check whether the DataTable contains a column with a particular name.

    0 讨论(0)
  • 2021-02-01 01:14

    You can encapsulate your block of code with a try ... catch statement, and when you run your code, if the column doesn't exist it will throw an exception. You can then figure out what specific exception it throws and have it handle that specific exception in a different way if you so desire, such as returning "Column Not Found".

    0 讨论(0)
  • 2021-02-01 01:25

    Another way to find out if a column exists is to check for Nothing the value returned from the Columns collection indexer when passing the column name to it:

    If dataRow.Table.Columns("ColumnName") IsNot Nothing Then
        MsgBox("YAY")
    End If
    

    This approach might be preferred over the one that uses the Contains("ColumnName") method when the following code will subsequently need to get that DataColumn for further usage. For example, you may want to know which type has a value stored in the column:

    Dim column = DataRow.Table.Columns("ColumnName")
    If column IsNot Nothing Then
        Dim type = column.DataType
    End If
    

    In this case this approach saves you a call to the Contains("ColumnName") at the same time making your code a bit cleaner.

    0 讨论(0)
  • 2021-02-01 01:26

    DataRow's are nice in the way that they have their underlying table linked to them. With the underlying table you can verify that a specific row has a specific column in it.

        If DataRow.Table.Columns.Contains("column") Then
            MsgBox("YAY")
        End If
    
    0 讨论(0)
提交回复
热议问题