将参数传递给Oracle存储过程 [英] passing parameters to Oracle store procedures

查看:84
本文介绍了将参数传递给Oracle存储过程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用asp.net传递输入参数并将输出参数输出到Oracle存储过程

How to pass input parameters and get output parameters to Oracle store procedures using asp.net

推荐答案

查看下面提到的链接以获取更多信息:



Check below mentioned links for more info:

ora_cmd.Parameters.Add("Lc_Exito", OracleDbType.Int32).Direction = ParameterDirection.Output;

ora_cmd.ExecuteNonQuery();

if (ora_cmd.Parameters["Lc_Exito"]).value == 0)





如何从.NET中的存储过程返回oracle输出参数



从存储过程中,返回OUT参数



我希望这会对你有所帮助。



How to return oracle output parameters from a stored procedure in .NET

From Stored Procedure, return OUT parameter

I hope this will help to you.


这篇关于将参数传递给Oracle存储过程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆