我有存储过程,应该得到它的结果。
从Java部分的调试:
return getJdbcTemplate().call(newCallableStatementCreator(inParams), getDeclaredParameters());
我发现了程序的名称及其参数。
如何使用以下参数执行此过程: Oracle Sql Developer。
谢谢。
答案 0 :(得分:15)
在SQL Developer中,您可以从SQL Worksheet窗口运行存储过程,如下所示:
exec myproc (myparam1 => 'a', myparam2 => 2);
使用命名参数或使用位置参数:
exec myproc ('a', 2);
按工具栏中的绿色“运行声明”按钮运行命令。