码迷,mamicode.com
首页 > 数据库 > 详细

c#中读取数据库bit布尔字段数据转换Int和bool时的错误

时间:2016-12-03 14:54:15      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:read   str   方法   ati   amp   操作   不能   ade   ring   

数据库里bit这个布尔类型的字段,非常实用,但是在c#里读取时,许多人喜欢犯一些错误,导致运行报错。

实际中,有效的正确读取方法只有以下两种:

int xxx= Convet.ToInt16(reader["xxx"]);//或Convet.ToInt32

bool xxx= bool.Parse(reader["xxx"]);

 

其他的都有可能会报错,即便不报错,也不能保证数据库设置或操作系统的问题,导致突然报错了!

如int.Parse(),有时就会报一下错误:

在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)

c#中读取数据库bit布尔字段数据转换Int和bool时的错误

标签:read   str   方法   ati   amp   操作   不能   ade   ring   

原文地址:http://www.cnblogs.com/guoyuqi/p/6128414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!