资源简介
网络课程管理系统源码
VS2008、七层架构、统一接口实现、extjs实现
前台框架
首页 课程内容 互动体验 使用技巧 作品欣赏 交流讨论 更多资源
数据库在DB_51aspx文件夹中(sql2000),附加即可.
登陆用户名和密码都是51aspx
代码片段和文件信息
using System;
using System.Web;
using System.Collections.Generic;
using System.Data;
using System.Data.OleDb;
using System.Configuration;
using System.IO;
namespace DBUtility
{
///
/// 数据访问层,提供处理Access数据库的各种方法
///
public sealed class AccessHelper
{
static AccessHelper()
{
//connectionString = string.Format(@“Provider=Microsoft.Jet.OleDb.4.0;Data Source={0}App_Data\MyShop.mdb;Persist Security Info=True;“ AppDomain.CurrentDomain.baseDirectory);
//connectionString = ConfigurationManager.AppSettings[“OLEDBCONNECTIONSTRING“].ToString() + System.Web.HttpContext.Current.Server.MapPath(ConfigurationManager.AppSettings[“strCon“]);
}
protected static string connectionString
{
get { return string.Format(@“Provider=Microsoft.Jet.OleDb.4.0;Data Source={0}“ System.Web.HttpContext.Current.Server.MapPath(ConfigurationManager.AppSettings[“strCon“])); }
}
#region ExecuteNonQuery
///
/// execute the sql and return the count of line
///
///
///
public static int ExecuteNonQuery(string commandText)
{
return ExecuteNonQuery(commandText (OleDbParameter[])null);
}
public static int ExecuteNonQuery(string commandText OleDbParameter[] parameters)
{
CommandType text = CommandType.Text;
return ExecuteNonQuery(text commandText parameters);
}
///
/// Execute a OleDbCommand (that returns no resultset) against the database specified in the connection string
/// using the provided prams
///
///
/// e.g.:
/// int result = ExecuteNonQuery( CommandType.StoredProcedure “PublishOrders“ new OleDbParameter(“@prodid“ 24));
///
/// The CommandType (stored procedure text etc.)
/// The stored procedure name or T-SQL command
/// An array of SqlParamters used to execute the command
/// An int representing the number of rows affected by the command
public static int ExecuteNonQuery( CommandType commandType string commandText params OleDbParameter[] commandprams)
{
if (connectionString == null || connectionString.Length == 0) throw new ArgumentNullException(“connectionString“);
// Create & open a OleDbConnection and dispose of it after we are done
using (OleDbConnection connection = new OleDbConnection(connectionString))
{
connection.Open();
// Call the overload that takes a connection in place of the connection stri
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 21384 2010-04-21 08:52 DBUtility\AccessHelper.cs
文件 11776 2010-05-20 13:55 DBUtility\bin\Debug\DBUtility.dll
文件 32256 2010-05-20 13:55 DBUtility\bin\Debug\DBUtility.pdb
文件 2268 2010-04-16 19:55 DBUtility\DBUtility.csproj
文件 322 2010-02-18 19:49 DBUtility\obj\DBUtility.csproj.FileListAbsolute.txt
文件 669 2010-08-31 11:28 DBUtility\obj\Debug\DBUtility.csproj.FileListAbsolute.txt
文件 11776 2010-05-20 13:55 DBUtility\obj\Debug\DBUtility.dll
文件 32256 2010-05-20 13:55 DBUtility\obj\Debug\DBUtility.pdb
文件 1331 2010-01-02 15:34 DBUtility\Properties\AssemblyInfo.cs
文件 19040 2010-05-20 13:55 DBUtility\SqlServerHelper.cs
文件 25600 2010-05-09 00:55 Lib\bin\Debug\Lib.dll
文件 60928 2010-05-09 00:55 Lib\bin\Debug\Lib.pdb
文件 54190 2010-02-04 09:23 Lib\Common.cs
文件 2281 2010-04-16 19:56 Lib\Lib.csproj
文件 5174 2009-12-31 17:11 Lib\Log.cs
文件 561 2010-08-31 11:28 Lib\obj\Debug\Lib.csproj.FileListAbsolute.txt
文件 25600 2010-05-09 00:55 Lib\obj\Debug\Lib.dll
文件 60928 2010-05-09 00:55 Lib\obj\Debug\Lib.pdb
文件 268 2010-02-18 19:49 Lib\obj\Lib.csproj.FileListAbsolute.txt
文件 1319 2010-01-02 15:34 Lib\Properties\AssemblyInfo.cs
文件 2493 2010-01-07 09:15 Lib\SystemConfig.cs
文件 11776 2010-05-20 13:55 Photography.AccessDAL\bin\Debug\DBUtility.dll
文件 32256 2010-05-20 13:55 Photography.AccessDAL\bin\Debug\DBUtility.pdb
文件 23552 2010-08-31 11:28 Photography.AccessDAL\bin\Debug\Photography.AccessDAL.dll
文件 54784 2010-08-31 11:28 Photography.AccessDAL\bin\Debug\Photography.AccessDAL.pdb
文件 5632 2010-08-31 11:28 Photography.AccessDAL\bin\Debug\Photography.IDAL.dll
文件 7680 2010-08-31 11:28 Photography.AccessDAL\bin\Debug\Photography.IDAL.pdb
文件 7168 2010-08-31 11:28 Photography.AccessDAL\bin\Debug\Photography.Model.dll
文件 34304 2010-08-31 11:28 Photography.AccessDAL\bin\Debug\Photography.Model.pdb
文件 1851 2010-08-31 11:28 Photography.AccessDAL\obj\Debug\Photography.AccessDAL.csproj.FileListAbsolute.txt
............此处省略731个文件信息
- 上一篇:超级棒的开源WPF动画效果
- 下一篇:ssleay32.dll 包括X64X86
相关资源
- PC电脑微信c#源代码
- Tekla二次开发学习资料含C#源代码
- 五子棋小游戏 C#源代码 完整源程序
- VS2017 10个项目C#源代码
- 企业人事管理系统C#源代码
- STC12C5A60S2-基于pt100的远程网络温度检
- 2048小游戏C#源代码
- 学生选课系统C#源代码
- DCT(离散余弦变换)C#源代码
- 多线程采集网页C#源代码
- 用C#写的高斯滤波源代码
- 串口调试助手C#源代码
- RSA文件加解密C#源代码
- C#编写的通讯录管理系统C#源代码程序
- 二进制文件的读写当前时间写入到d
- 动态添加控件每点击一次就会增加一
- 校园导游系统 C#源代码图的应用
- C#源代码 读取多个txt写入excel
- 火车票售票系统C#源代码
- 员工管理信息系统C#源代码
- 构建Delauney三角网 C#源代码
- 财务管理系统程序(c#源代码)
- 托利多电子称开发下传C#源代码
- 人机对战版五子棋C#源代码解压密码:
- 电子邮件email收取客户端程序,C#源代
- kalman卡尔曼滤波C#源代码
- 多窗口应用程序(C#源代码编写)
- 图斑净面积计算工具源代码基于ARCG
- C#源代码 如何实现点对点的聊天
- C#调用高德、百度及google地图api解析经
评论
共有 条评论