|
-
Sep 28th, 2006, 12:49 PM
#1
Thread Starter
Hyperactive Member
[RESOLVED] [2.0] Dataset question...
I am written the following code that will call oracle stored proc and the results are captured in a dataset.
In my new requirements, I need to call one more stored proc add the results from that procedure to the same dataset (may be a new table). so when I go thru this dataset I will have two datatables
How can add the results of the second stored proc to the same dataset (aDataSet)?
thanks
nath
OracleParameter ps1 = new OracleParameter("io_cursor", OracleType.Cursor);
ps1.Direction = ParameterDirection.Output;
OracleParameter[] param = { ps1 };
aDataSet = aDataBase.ExecuteDataSet("ReconcileHarmdm", param);
return aDataSet;
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|