微软企业库访问oracle,分享,Oracle存储过程+.NET(c#)+微软企业库的示范(添加修改删除,缺列表等)...

C# code//引用微软企业库

using Microsoft.Practices.EnterpriseLibrary.Data;

using Microsoft.Practices.EnterpriseLibrary.Common;

//建立数据库访问类

Database db = DatabaseFactory.CreateDatabase();

// 新增

public void Add(SystemCodeModel Model)

{

System.Data.Common.DbCommand sqlCommand = db.GetStoredProcCommand("SystemCode_ADD");

db.AddInParameter(sqlCommand, "CodeLb_in", DbType.String, Model.CodeLb);

db.AddInParameter(sqlCommand, "LbName_in", DbType.String, Model.LbName);

db.AddInParameter(sqlCommand, "CodeValue_in", DbType.String, Model.CodeValue);

db.AddInParameter(sqlCommand, "CodeName_in", DbType.String, Model.CodeName);

db.ExecuteNonQuery(sqlCommand);

}

//修改

public void Update(SystemCodeModel Model)

{

System.Data.Common.DbCommand sqlCommand = db.GetStoredProcCommand("SystemCode_Update");

db.AddInParameter(sqlCommand, "CodeLb_in", DbType.String, Model.CodeLb);

db.AddInParameter(sqlCommand, "LbName_in", DbType.String, Model.LbName);

db.AddInParameter(sqlCommand, "CodeValue_in", DbType.String, Model.CodeValue);

db.AddInParameter(sqlCommand, "CodeName_in", DbType.String, Model.CodeName);

db.ExecuteNonQuery(sqlCommand);

}

//删除

public void Delete(string CodeLb, string CodeValue)

{

System.Data.Common.DbCommand sqlCommand = db.GetStoredProcCommand("SystemCode_Delete");

db.AddInParameter(sqlCommand, "CodeLb_in", DbType.String, CodeLb);

db.AddInParameter(sqlCommand, "CodeValue_in", DbType.String, CodeValue);

db.ExecuteNonQuery(sqlCommand);

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值