使用 ADO.NET 的 DB2 复合语句
我想使用 C# 和 IBM 的 DB2 数据提供程序从我的数据访问层执行多个语句。 (环境:DB2/AS400 操作系统版本:V5R4)
例如在TSQL中:
declare varA integer;
select varA= count(*) from tableA;
select * from tableB where col1 <= varA
使用SQL服务器;我可以将这 3 个语句连接成一个字符串 并将文本分配给 DBCommand.CommandText。
如何通过 DBCommand (使用 IBM DB2 数据提供程序)对 DB2 数据库执行多个语句(复合语句)
我尝试使用 begin 和 end 块但仍然失败
BEGIN
statement1;
statement2;
statement3;
END
谢谢
I want to execute multiple statements from my data access layer using C# dan IBM's DB2 data provider.
(environment: DB2/AS400 os version: V5R4)
eg in TSQL:
declare varA integer;
select varA= count(*) from tableA;
select * from tableB where col1 <= varA
with SQL server ; I can concatenate those 3 statements into a string
and assign the text to DBCommand.CommandText.
How to execute multiple statements(compound statement) against DB2 database via DBCommand (using IBM DB2 data provider)
I tried using begin and end block but still failed
BEGIN
statement1;
statement2;
statement3;
END
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是不可能的。
我前段时间已经尝试过类似的方法,我发现的唯一解决方案是动态创建一个存储过程,调用它,最后删除它。
I do not think it's possible.
I had already tried something similar some time ago, and the only solution I found is to dynamically create a stored procedure, calling it, and finally delete it.