对象不能从DBNull转换为其他类型
摘要:
解决办法:1.if (dtedit.Rows[k][i] == DBNull.Value) num = 0; else num = Convert.ToInt32(dtedit.Rows[k][i]);2.在读取数据库数据时判断.如"Select IsNull(score,0) from score" 先把为null的数据表示为03. public static int ParseInt(obje... 阅读全文
posted @ 2010-08-28 17:57 悟生慧 阅读(2241) 评论(0) 推荐(0) 编辑