码迷,mamicode.com
首页 > Windows程序 > 详细

C# 增加 删除 更新 方法

时间:2018-01-24 15:22:41      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:build   rom   影响   nbsp   public   body   .exe   summary   sele   

/// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(string 表名,string 参数,string 参数值)
        {
            StringBuilder strSql = new StringBuilder();
            strSql.Append("insert into ");
            strSql.Append(表名);
            strSql.Append("(");
            strSql.Append(参数);
            strSql.Append(") values (");
            strSql.Append(参数值);
            strSql.Append(") ");
            strSql.Append(";select @@IDENTITY"); //返回上一次插入数据的id
            //执行 语句
            object obj=""; //执行  语句//= DbHelperSQL.GetSingle(strSql.ToString());
            if (obj == null)
            {
                return 0;
            }
            else
            {
                return Convert.ToInt32(obj);
            }
        }
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public int Update(string 表名, string 参数, string 条件) //返回受影响的行数
        {
            StringBuilder strSql = new StringBuilder();
            strSql.Append("update ");
            strSql.Append(表名);
            strSql.Append(" set ");
            strSql.Append(参数);
            strSql.Append(" where  ");
            strSql.Append(条件);

            //执行sql语句
            object obj = "";
            if (obj == null)
            {
                return 0;
            }
            else
            {
                return Convert.ToInt32(obj);
            }

        }
        /// <summary>
        /// 删除一条数据
        /// </summary>
        public bool Delete(string 表名,string 条件)
        {
            StringBuilder strSql = new StringBuilder();
            strSql.Append("delete from ");
            strSql.Append(表名);
            strSql.Append(" where ");
            strSql.Append(条件);
            int rows = 0;// = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);
            if (rows > 0)
            {
                return true;
            }
            else
            {
                return false;
            }
        }

 

C# 增加 删除 更新 方法

标签:build   rom   影响   nbsp   public   body   .exe   summary   sele   

原文地址:https://www.cnblogs.com/enych/p/8341391.html

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