ODP.NETを使用して.netでOracleを使用しています。ストアドプロシージャを呼び出すときに、out変数から変数を取得する方法を考えていました。
私が現在持っているのは...
using(IDataReader reader = defaultDB.ExecuteReader("CalledStoredProc", new object[]{"InputVar", "OutPutVar"}))
{
//Display the rows for the reader.
DisplayRowVals(reader);
}
何か提案があれば、ぜひ教えてください。
ありがとう、デレク