确定字段是否从数据读取器返回

发布于 2024-12-02 16:43:34 字数 270 浏览 0 评论 0原文

我动态地选择一个表来选择,但有一个字段并不存在于所有表中。在我的阅读器中,我如何检查该字段是否存在于集合中?

我正在使用这个,但它只确定它是否为空...而不确定它是否存在:

if (myReader.GetValue(myReader.GetOrdinal("PrePay")) != DBNull.Value)
    myModel.PrePay = myReader.GetBoolean(myReader.GetOrdinal("PrePay"));

I'm dynamically picking a table to select from and there's one field that doesn't exist on all of the tables. Inside my reader, how can I check to see if that field exists in the collection?

I'm using this, but it only determines if it's null...not whether it exists or not:

if (myReader.GetValue(myReader.GetOrdinal("PrePay")) != DBNull.Value)
    myModel.PrePay = myReader.GetBoolean(myReader.GetOrdinal("PrePay"));

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

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

发布评论

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

评论(4

oО清风挽发oО 2024-12-09 16:43:34

看看 SqlDataReader.GetSchemaTable (假设 myReader 是 SqlDataReader)。

Have a look at SqlDataReader.GetSchemaTable (assuming myReader is a SqlDataReader).

梦里南柯 2024-12-09 16:43:34
while(reader.Read())
{
    if(reader.GetOrdinal("FieldName")>=0) //field exists
    {
 ....
    }
}
while(reader.Read())
{
    if(reader.GetOrdinal("FieldName")>=0) //field exists
    {
 ....
    }
}
毁梦 2024-12-09 16:43:34
for (int i = 0; i < myReader.FieldCount; i++)
{
    string name = myReader.GetName(i);
    if (string.Equals(name , "PrePay", StringComparison.OrdinalIgnoreCase))
    {
        object value = myReader.GetValue(i);
        if (!Convert.IsDBNull(value))
        {
            myModel.PrePay = (bool)value;
        }
        break;
    }
}

如果您的读取器返回多于一行,那么您应该在开始时仅执行一次查找,然后缓存序数以在迭代结果集时使用。

for (int i = 0; i < myReader.FieldCount; i++)
{
    string name = myReader.GetName(i);
    if (string.Equals(name , "PrePay", StringComparison.OrdinalIgnoreCase))
    {
        object value = myReader.GetValue(i);
        if (!Convert.IsDBNull(value))
        {
            myModel.PrePay = (bool)value;
        }
        break;
    }
}

If your reader returns more than one row then you should perform the lookup just once at the beginning and then cache the ordinal to use when iterating through the resultset.

感情旳空白 2024-12-09 16:43:34
While(myReader.Read())
{ 
   MessageBox.Show(myReader.Item("PrePay").toString());
}

基本上,如果“PrePay”的值为空,则它不存在,否则它存在。

While(myReader.Read())
{ 
   MessageBox.Show(myReader.Item("PrePay").toString());
}

Basically, if the value of "PrePay" is null, it's doesn't exist otherwise it's exist.

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