最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
在.net中如何把调用存储过程代码写入数据连接层中
时间:2022-07-02 18:09:22 编辑:袖梨 来源:一聚教程网
Oracle方面
1.创建Oracle过程存储
create or replace procedure proce_test(paramin in varchar2,paramout out varchar2,paraminout in out varchar2)
as
varparam varchar2(28);
begin
varparam:=paramin;
paramout:=varparam|| paraminout;
end;
2.测试过程存储
declare
param_out varchar2(28);
param_inout varchar2(28);
begin
param_inout:='ff';
proce_test('dd',param_out,param_inout);
dbms_output.put_line(param_out);
end;
测试结果:ddff
C#方面
1.创建界面
类型
对象名
Text属性值
Button
Button1
调用
Label
Label1
A:
Label
Label2
B:
Label
Label3
input
Label
Label4
inputoutput
Label
Label5
TextBox
TextBox1
TextBox
TextBox2
2.显示代码
(1) 在WebForm4.aspx.cs文件
添加字段 private OraOprater mOra=null; //OraOprater 是数据连接层的类
在界面上双击“调用”按钮,编写如下代码:
private void Button1_Click(object sender, System.EventArgs e)
{
mOra=new OraOprater();
Label5.Text=mOra.SpExeFor(TextBox1.Text,TextBox2.Text); //调用存储过程的方法
}
(2) 在数据连接层中的代码(OraOprater.cs)
引用Oracle组件
using System;
using System.Data;
using System.Data.OracleClient;
namespace WebApplication4
{
public class OraOprater
{
private OracleConnection conn=null;
private OracleCommand cmd=null;
public OraOprater()
{
string mConn="data source=ora9i.ora.com;user id=ora;password=ora"; //连接数据库
conn=new OracleConnection(mConn);
try
{
conn.Open();
cmd=new OracleCommand();
1.创建Oracle过程存储
create or replace procedure proce_test(paramin in varchar2,paramout out varchar2,paraminout in out varchar2)
as
varparam varchar2(28);
begin
varparam:=paramin;
paramout:=varparam|| paraminout;
end;
2.测试过程存储
declare
param_out varchar2(28);
param_inout varchar2(28);
begin
param_inout:='ff';
proce_test('dd',param_out,param_inout);
dbms_output.put_line(param_out);
end;
测试结果:ddff
C#方面
1.创建界面
类型
对象名
Text属性值
Button
Button1
调用
Label
Label1
A:
Label
Label2
B:
Label
Label3
input
Label
Label4
inputoutput
Label
Label5
TextBox
TextBox1
TextBox
TextBox2
2.显示代码
(1) 在WebForm4.aspx.cs文件
添加字段 private OraOprater mOra=null; //OraOprater 是数据连接层的类
在界面上双击“调用”按钮,编写如下代码:
private void Button1_Click(object sender, System.EventArgs e)
{
mOra=new OraOprater();
Label5.Text=mOra.SpExeFor(TextBox1.Text,TextBox2.Text); //调用存储过程的方法
}
(2) 在数据连接层中的代码(OraOprater.cs)
引用Oracle组件
using System;
using System.Data;
using System.Data.OracleClient;
namespace WebApplication4
{
public class OraOprater
{
private OracleConnection conn=null;
private OracleCommand cmd=null;
public OraOprater()
{
string mConn="data source=ora9i.ora.com;user id=ora;password=ora"; //连接数据库
conn=new OracleConnection(mConn);
try
{
conn.Open();
cmd=new OracleCommand();
相关文章
- 《彩色点点战争》推图常用三大主c玩法详解 01-23
- 《燕云十六声》池鱼林木任务攻略 01-23
- 《大连地铁e出行》查看行程记录方法 01-23
- 《明日方舟》2025春节限定干员余角色介绍 01-23
- 《崩坏:星穹铁道》万敌光锥搭配攻略 01-23
- 《燕云十六声》一药千金任务攻略 01-23