0

我正在使用System.Data.OracleClient企业库连接到 Oracle 数据库,我想使用commandType = Text如下方式调用存储过程:

Microsoft.Practices.EnterpriseLibrary.Data.Database database = null;

database = DatabaseFactory.CreateDatabase("DbInstanceName");
System.Data.Common.DbConnection conn = database.CreateConnection();

conn.Open();

commandObj = database.GetSqlStringCommand("execute procName('paramValue1','paramValue2')");
commandObj.CommandType = CommandType.Text;
commandObj.Connection = conn;

returnCode = database.ExecuteNonQuery(commandObj);

我不断收到无效的 SQL 语句错误,想知道是否可以用于CommandType.Text对 Oracle 的存储过程调用。

我们不能使用 ,CommandType = StoredProcedure因为传入的命令字符串在字符串中包含了存储过程调用的所有参数值。如果这是不可能的,我将不得不从字符串中解析出每个参数值并将它们放入参数对象中。

4

1 回答 1

0

这个有可能。我发现我的问题是“执行”语句。Oracle 存储过程不需要这样做。

于 2017-09-26T16:58:44.130 回答