DAL层修改sql表数据
生活随笔
收集整理的這篇文章主要介紹了
DAL层修改sql表数据
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
組長寫的,DAL層Update
1 //編輯 2 public int Update(Dictionary<string, object> par, long uid) 3 { 4 if (par.Count == 0) return 0; 5 StringBuilder Sql = new StringBuilder(); 6 Sql.Append("UPDATE uc_user SET "); 7 SqlParameter[] pars = new SqlParameter[par.Count + 1]; 8 string[] fields = new string[par.Count]; 9 int index = 0; 10 foreach (string name in par.Keys) 11 { 12 Sql.AppendFormat("[" + name + "] =@p_{0},", index); 13 pars[index] = new SqlParameter("@p_" + index.ToString(), par[name]); 14 index++; 15 } 16 Sql.Remove(Sql.Length - 1, 1); 17 Sql.Append(" WHERE "); 18 Sql.Append("[UID] = @p_" + index.ToString()); 19 pars[index] = new SqlParameter("@p_" + index.ToString(), uid); 20 index++; 21 return SqlHelper.ExecuteNonQuery(ConnectionString, CommandType.Text, Sql.ToString(), pars); 22 }修改用戶名,BLL層只需要傳入對(duì)應(yīng)的密碼
1 public static int Update(Dictionary<string, object> par, long AUID) 2 { 3 return dal.Update(par, AUID); 4 } 5 6 public static int EditPwd(string Pwd, long Auid) 7 { 8 Dictionary<string, object> dic = new Dictionary<string, object>(); 9 dic.Add("UserPassword", Utils.MD5(Pwd)); 10 return Update(dic, Auid); 11 }然后web層調(diào)用就行
1 BLL.Uc.UserB2B.EditPwd(newpwd, CurrentUser.UID);因?yàn)槭亲值溲h(huán)調(diào)用,固傳入修改的什么列,就修改什么列,條件自己定義,很靈活
?
轉(zhuǎn)載于:https://www.cnblogs.com/Cein/p/7073047.html
總結(jié)
以上是生活随笔為你收集整理的DAL层修改sql表数据的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C和C++的关键字区别
- 下一篇: vue 入门环境搭建