关于三层架构的操作方法

时间:2014-06-22 16:49:55
【文件属性】:

文件名称:关于三层架构的操作方法

文件大小:88KB

文件格式:RAR

更新时间:2014-06-22 16:49:55

三层架构

//连接字符串 private static readonly string _ConnString = ConfigurationManager.ConnectionStrings["_ConnString"].ConnectionString.ToString(); ///

/// 初始化command对象 /// /// 连接数据库对象 /// command对象 /// 查询语句 /// 查询要用到的参数对象 private static void PreCommand(SqlConnection conn, SqlCommand cmd, string sql, params SqlParameter[] Parms) { //打开数据库 if (conn.State == ConnectionState.Closed) { conn.Open(); } cmd.Connection = conn; cmd.CommandText = sql; if (Parms != null) { cmd.Parameters.AddRange(Parms); } }


【文件预览】:
三层架构Solution1
----Solution1.sln(4KB)
----DBUtility()
--------DBUtility.csproj(2KB)
--------bin()
--------obj()
--------Properties()
--------SQLHelper.cs(3KB)
----WindowsApplication1()
--------Form1.cs(687B)
--------bin()
--------obj()
--------Properties()
--------Program.cs(478B)
--------frmAdd.cs(2KB)
--------Form1.Designer.cs(3KB)
--------frmAdd.resx(6KB)
--------WindowsApplication1.csproj(4KB)
--------frmAdd.Designer.cs(5KB)
--------App.config(241B)
--------Form1.resx(6KB)
----Solution1.suo(20KB)
----Model()
--------bin()
--------obj()
--------Properties()
--------Address.cs(637B)
--------Model.csproj(2KB)
----web()
--------web.config(3KB)
--------App_Data()
--------Default.aspx(697B)
--------Default.aspx.vb(75B)

网友评论