确定字段是否从数据读取器返回
我动态地选择一个表来选择,但有一个字段并不存在于所有表中。在我的阅读器中,我如何检查该字段是否存在于集合中?
我正在使用这个,但它只确定它是否为空...而不确定它是否存在:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
看看 SqlDataReader.GetSchemaTable (假设 myReader 是 SqlDataReader)。
Have a look at SqlDataReader.GetSchemaTable (assuming myReader is a SqlDataReader).
如果您的读取器返回多于一行,那么您应该在开始时仅执行一次查找,然后缓存序数以在迭代结果集时使用。
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.
基本上,如果“PrePay”的值为空,则它不存在,否则它存在。
Basically, if the value of "PrePay" is null, it's doesn't exist otherwise it's exist.