【IT168 技术文档】
1.创建测试存储过程:
SQL> create or replace procedure proc_test(p1 IN varchar2,p2 OUT varchar2) is
begin
SELECT p1 INTO p2 FROM dual;
end proc_test;
/
SQL> create or replace procedure proc_test(p1 IN varchar2,p2 OUT varchar2) is
begin
SELECT p1 INTO p2 FROM dual;
end proc_test;
/
过程被创建
2.主要C# 代码以及注意点:oracle手动调用存储过程
using ORAC = System.Data.OracleClient;
private void button1_Click(object sender, System.EventArgs e)
{
try
{
using ORAC = System.Data.OracleClient;
private void button1_Click(object sender, System.EventArgs e)
{
try
{
string str_Sql = @"call proc_test(:p1,:p2)";
/*不能用:call proc_test(?,?)或者call proc_test(@p1,@p2),这样会报ORA-01036:非法的变量名/编号错误 */
ORAC.OracleCommand cmd = new ORAC.OracleCommand(str_acleConnection1);
/*cmd.CommandType = CommandType.StoredProcedure;-注意这种方式调用存储过程,不能指定CommandType为StoredProcedure */
/*不能用:call proc_test(?,?)或者call proc_test(@p1,@p2),这样会报ORA-01036:非法的变量名/编号错误 */
ORAC.OracleCommand cmd = new ORAC.OracleCommand(str_acleConnection1);
/*cmd.CommandType = CommandType.StoredProcedure;-注意这种方式调用存储过程,不能指定CommandType为StoredProcedure */
ORAC.OracleParameter pram1 = new ORAC.OracleParameter("p1",ORAC.OracleType.VarChar,10);
pram1.Value = "test";
pram1.Value = "test";
cmd.Parameters.Add(pram1);
ORAC.OracleParameter pram2 = new ORAC.OracleParameter("p2",ORAC.OracleType.VarChar,10);
pram2.Direction =ParameterDirection.Output;
pram2.Direction =ParameterDirection.Output;
cmd.Parameters.Add(pram2);
acleConnection1.State == System.Data.ConnectionState.Closed)
{
acleConnection1.Open();
}
{
acleConnection1.Open();
}
cmd.ExecuteNonQuery();
Box1.Text = cmd.Parameters[1].Value.ToString();
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
acleConnection1.Close();
}
}
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论