• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#/SQLServer|往数据库插入/更新时候关于NUll空值的处理

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

前几天遇到一个问题,找了好久才找到解决办法。不过也很开心,终于解决了。

问题:前端当我数据为空的时候不赋值,传到后台也为空的时候(注意:是Null不是""),SqlCommand对传送的参数中如果字段的值是NULL具然不进行更新操作。

插入、更新操作都不进行,现在咱们拿插入为例(更新同理)。

例:

public bool Insert(SysNotify notify)
{
    SqlParameter[] parameters = new SqlParameter[]
    {
      new SqlParameter("@Title", notify.Title),
      new SqlParameter("@NotifyType", notify.NotifyType),
      new SqlParameter("@NotifyContent", notify.NotifyContent)
    };

    string sqlStr = @" INSERT INTO SysNotify(Title, NotifyType, NotifyContent) 
                       VALUES(@Title, @NotifyType, @NotifyContent) ";

    return DbHelper.ExecuteNonQuery(CommandType.Text, sqlStr, parameters);
}

这里就是当notify.Title为Null时,就会报错,所以要对notify.Title这个字段处理一下。

解决办法:

我使用扩展方法封装了一个静态方法:

#region 判断数据为空时,获取其DBNull的值 徐悦 2019年2月23日17:16:35
/// <summary>
/// 判断数据为空时,获取其DBNull的值
/// </summary>
/// <param name="value"></param>
/// <returns></returns>
public static object GetDBNull(this object value)
{
   if (value == null)
  {
      return DBNull.Value;
   }
   return value;
}
#endregion

然后按照下面这种形式调用就可以处理数据为空时的处理

public bool Insert(SysNotify notify)
{
    SqlParameter[] parameters = new SqlParameter[]
    {
      new SqlParameter("@Title", notify.Title.GetDBNull()),
      new SqlParameter("@NotifyType", notify.NotifyType),
      new SqlParameter("@NotifyContent", notify.NotifyContent.GetDBNull())
    };

    string sqlStr = @" INSERT INTO SysNotify(Title, NotifyType, NotifyContent) 
                       VALUES(@Title, @NotifyType, @NotifyContent) ";

    return DbHelper.ExecuteNonQuery(CommandType.Text, sqlStr, parameters);
}

按照标红处方式使用就可以解决当数据为空时,SqlCommond执行不成功的问题。

bingo(o゜▽゜)o☆[BINGO!]

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C语言字符串函数大全发布时间:2022-07-13
下一篇:
LeetCodeOnlineJudge题目C#练习-LargestRectangleinHistogram发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap