Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 oracle 作为我的后端,并且我有一个包含 5 个程序的包,我如何在 c# 中执行该包,任何有示例的主体都请解释一下。
您可以使用用户前缀并打包您的存储过程
var command = new OracleCommand(connection); command.CommandText = "NameOfUser.NameOfPackage.NameOfStoredProcedure";