ADO.NET DataRow - 检查列是否存在

发布于 2024-07-23 10:53:00 字数 467 浏览 13 评论 0原文

如何检查数据行中是否存在列?

我正在构建数据表来组织我已经从数据库中提取的一些数据。 根据每行中的数据类型,我需要创建一个包含不同列的数据表。 然后,稍后,我想检查我正在查看的数据表是否具有特定列。

我知道我可以捕获异常并以这种方式处理它,但我很好奇数据行对象上是否有一个属性或方法可以为我执行此操作?

以下是我如何通过捕获异常来做到这一点:

public static String CheckEmptyDataRowItem(DataRow row, String rowName, String nullValue)
{
    try
    {
        return row[rowName].ToString();
    }
    catch (System.ArgumentException)
    {
        return nullValue;
    }
}

How do I check for the existence of a column in a datarow?

I'm building datatables to organize some data that I've already pulled back from the database. Depending on the type of data in each row, I need to create a datatable with different columns. Then, later on, I want to check and see if the datatable I am looking at has a certain column.

I know I can catch the exception and handle it that way, but I'm curious if there is a property or method on the datarow object that will do this for me?

Here's how I can do it by catching the exception:

public static String CheckEmptyDataRowItem(DataRow row, String rowName, String nullValue)
{
    try
    {
        return row[rowName].ToString();
    }
    catch (System.ArgumentException)
    {
        return nullValue;
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

山色无中 2024-07-30 10:53:00

您可以简单地这样检查:

return row.Table.Columns.Contains(columnName);

You can simply check like this:

return row.Table.Columns.Contains(columnName);
傲影 2024-07-30 10:53:00

DataTables 具有该架构信息,因此请检查 Row 的 Table 的 Columns 集合是否包含该字段。

DataTables have that schema info, so check if the Row's Table's Columns collection contains the field.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文