I am using oracle as my back end and i have a package with 5 procedures how can i execute the package in c#, any body with an example explain please.
Asked
Active
Viewed 1,358 times
0
-
1look at this post http://stackoverflow.com/questions/2949641/call-oracle-package-function-using-odbc-from-c-sharp – opewix Sep 11 '12 at 11:55
-
i have to execute 5 procedures at a time on button pressed – Sreedhar goud Sep 11 '12 at 11:59
1 Answers
2
You can prefix with user and package your stored procedure
var command = new OracleCommand(connection);
command.CommandText = "NameOfUser.NameOfPackage.NameOfStoredProcedure";

Aghilas Yakoub
- 28,516
- 5
- 46
- 51