0

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.

Sreedhar goud
  • 81
  • 2
  • 5
  • 15

1 Answers1

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