微软帮助类SqlHelper】的更多相关文章

using System; using System.Data; using System.Xml; using System.Data.SqlClient; using System.Collections; using System.Configuration; using System.Collections.Generic; namespace Elands.JinCard.DAL { public sealed class SqlHelper { #region 私有构造函数和方法 p…
一,微软SQLHelper.cs类 中文版: using System; using System.Data; using System.Xml; using System.Data.SqlClient; using System.Collections; namespace Classbao.Data { /// <summary> /// SqlServer数据访问帮助类 /// </summary> public sealed partial class SqlHelper…
在.NET平台中,C#语言一般使用ADO.NET组件来操作Sqlserver数据库,通过ADO.NET组件可以实现连接数据库.查询数据集.执行SQL语句以及关闭数据库连接等操作,为此网上有很多开发者自定义封装好的SqlHelper类供使用,其实微软官方自己也提供了一个比较完整的Sqlserver数据库操作帮助类SqlHelper,该帮助类文件中包含了详细的中文注释. 该SqlHelper类比较完整,代码量比较多,因此博主加了个链接提供个读者下载,百度网盘下载地址:SqlHelper类. 备注:此…
工具类SqlHelper 即:完成常用数据库操作的代码封装 一.基础知识1.每次进行操作时,不变的代码: (1)连接字符串:(2)往集合存值:(3)创建连接对象.命令对象:(4)打开连接:(5)执行命令2.每次操作时,变化的代码: (1)sql语句: (2)参数 3.配置文件(关于配置这篇文章讲的挺详细的:https://www.cnblogs.com/programsky/p/4592141.html) 好处:修改方便: 维护成本降低,修改程序不需要重新编译. 代码为: <?xml versi…
转载自:http://blog.csdn.net/fengqingtao2008/article/details/17399247 using System; using System.Data; using System.Xml; using System.Data.SqlClient; using System.Collections; using System.Configuration; namespace BookDAL { /// <summary> /// SqlServer数据…
1 SqlHelper源码 using System; using System.Data; using System.Xml; using System.Data.SqlClient; using System.Collections; namespace SQL.Access { /// <summary> /// SqlServer数据访问帮助类 /// </summary> public sealed class SqlHelper { #region 私有构造函数和方法…
从网络上找到 微软原版本的SQLHelper,很多行代码.认真看了,学习了.  代码:  using System; using System.Data; using System.Xml; using System.Data.SqlClient; using System.Collections; namespace Helper { /// <summary> /// The SqlHelper class is intended to encapsulate high performan…
using System; using System.Collections.Generic; using System.Text; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Collections; using System.Data.Common; namespace SWDataDB.DAL { public class SQLHelper { /// <…
Codeusing System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Collections; using System.Data.SqlClient; /// <summary> /// 数据库的通用访问代码 /// 此类为抽象类,不允许实例化,在应用时直接调用即可 /// </summary> publi…
public static class SqlHelper { //通过配置文件获取连接字符创 private static readonly string constr = ConfigurationManager.ConnectionStrings["str"].ConnectionString; /// <summary> /// 执行增,删,改的方法 /// </summary> /// <param name="sql">…