Firebird ado.net动态sql:可以使用多个select语句吗?
我正在重构 ac# 应用程序并优化一些查询。该应用程序支持 Microsoft SQL 服务器和 Firebird。
我似乎找不到任何有关在 Firebird 上的动态 SQL 中发出多个选择语句的信息。
例如,这对于 Microsoft SQL 服务器有效: “从一个表中选择*;从另一个表中选择*;”
然而,Firebird 在分号上调用无效标记。
请注意,这是使用 ADO.NET Firebird 驱动程序从 C# 代码调用的。
I'm refactoring a c# application and optimizing some queries. The app supports Microsoft SQL server and Firebird.
I can't seem to find any information regarding issuing multiple select statements in Dynamic SQL on Firebird.
For example this is valid for Microsoft SQL server:
"SELECT * FROM ATABLE; SELECT * FROM ANOTHERTABLE;"
However Firebird calls invalid token on the semicolon.
Note this is called from c# code using the ADO.NET Firebird driver.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Firebird 不支持同一命令中的多重选择
Firebird does not support multipel select within the same command