我正在制作一个为我的客户生成报告的应用程序。我正在使用他的数据库,其中包含返回报告所需数据的存储过程。问题是我不知道如何从应用程序执行它们(更具体地说,我的数据集中的TableAdapter)。当我使用视觉辅助工具创建TableAdapter时,它会显示错误“名为#table1的无效对象”。这很奇怪,因为存储过程中有一个名为#table1的临时表。
当我尝试以编程方式完成整个工作时,我得到了例外
Incorrect syntax near '.'.
An object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.
我创建了一个DataTable,它与存储过程的结果具有相同的结构,但我仍然得到相同的异常
我添加了command.CommandType = CommandType.StoredProcedure
,并有一个新的例外No mapping exists from object type System.Data.DataRow[] to a known managed provider native type.
答案 0 :(得分:0)
TableAdapter尝试使用不识别#temp表的SET FMTONLY(或类似机制)来猜测结果集的列。
可以用@table variable替换#temp表吗?