欢迎光临
我们一直在努力

asp.net中对数据库表插入null空值的问题_asp.net技巧

建站超值云服务器,限时71元/月

对表进行插入操作,如datetime和int类型的两个字段,都允许为null,
用“sqlcmd.Parameters.Add(“@t12”,tb12.Text)”参数绑定时。datetime类型时,tb12.Text为空,插入成功,不报错,查看该值,却为1900-01-01;int类型时,用同样语句,tb12.Text为空,插入成功,不报错,查看该值,却为0;用“sqlcmd.Parameters.Add(new SqlParameter(“@t12”,SqlDbType.DateTime));sqlcmd.Parameters[“@t12”].Value=tb12.Text;”语句时,tb12.Text为空插入则报错。


sqlcmd.Parameters.Add(new SqlParameter(“@t12”,SqlDbType.DateTime));
if (tb12.Text.Length>0)
{
sqlcmd.Parameters[“@t12”].Value=tb12.Text
}
else
{
sqlcmd.Parameters[“@t12”].Value = System.DBNull.Value;
}


http://www.cnblogs.com/SAL2928/archive/2006/12/09/587267.html

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » asp.net中对数据库表插入null空值的问题_asp.net技巧
分享到: 更多 (0)