0

如何指定使用包内存储过程的查询?例如,此查询失败并显示一条消息:

!|Query|SELECT * FROM TABLE (pckg.GetData('param1'))|
|field1|
|value1|

System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ArgumentException: Column 'ugp_udf_name' does not belong to table Table.
   at System.Data.DataRow.GetDataColumn(String columnName)
   at System.Data.DataRow.get_Item(String columnName)
   at fitSharp.Machine.Engine.InvokeDataRow`2.Invoke(TypedValue instance, MemberName memberName, Tree`1 parameters)
...(the rest of the stack trace)
4

1 回答 1

0

DbFit 摇滚...

!|Query|SELECT pckg.GetData('param1') field1 from dual|
|field1|
|value1|
于 2012-03-13T19:25:22.420 回答