SqlDataReader 从计算结果集字段获取Boolean
我的 SQL SPROC 结果集中有一个字段,它是返回 1 或 0(即 True/False)的计算 CASE 语句。
当我尝试使用 SqlDataReader 类的 GetBoolean 方法并引发异常时。
任何建议将不胜感激。
I've got a field in my SQL SPROC resultset that is a calculated CASE statement that returns 1 or 0 (ie True/False).
When I try to use the GetBoolean method of the SqlDataReader class and exception gets thrown.
Any suggestions would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
返回值之前将其转换为
位
Cast the value into a
bit
before returning it