摘要: USE LoadData go UPDATE dbo.XimaLss SET BParent_fullname =c.BParent_fullname FROM ( SELECT a.JxsID,a.Btypeid,a.AreaID,a.BParent_fullname FROM dbo.XimaBill a INNER JOIN (SELECT ... 阅读全文
posted @ 2019-06-27 14:41 智者见智 阅读(648) 评论(0) 推荐(0)
摘要: //=============================================================================== // This file is based on the Microsoft Data Access Application Block for .NET // For more information please go to /... 阅读全文
posted @ 2019-06-27 14:18 智者见智 阅读(356) 评论(0) 推荐(0)
摘要: using System; using System.Collections; using System.Collections.Specialized; using System.Data; using System.Data.SqlClient; using System.Configuration; using System.Data.Common; using System.Collec... 阅读全文
posted @ 2019-06-27 14:14 智者见智 阅读(3342) 评论(0) 推荐(0)
摘要: using System; using System.Security.Cryptography; using System.Text; namespace DBUtility { /// /// DES加密/解密类。 /// public class DESEncrypt { public DESEncrypt() ... 阅读全文
posted @ 2019-06-27 14:12 智者见智 阅读(513) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Reflection; using System.Text; namespace Common { public class ModelHandler where T : new() ... 阅读全文
posted @ 2019-06-27 14:09 智者见智 阅读(384) 评论(0) 推荐(0)
摘要: using System; using System.Configuration; namespace Common { //配置Config文件信息 public class Config { /// /// 数据库字符串 /// public static string SQLConnString ... 阅读全文
posted @ 2019-06-27 14:08 智者见智 阅读(456) 评论(0) 推荐(0)
摘要: 方法1: using System.Text; using System.Security.Cryptography; public string Hash(string toHash) { MD5CryptoServiceProvider crypto = new MD5CryptoServiceProvider();... 阅读全文
posted @ 2019-06-27 11:45 智者见智 阅读(2700) 评论(0) 推荐(0)