使用 ADO.NET 的 DB2 复合语句

发布于 2024-10-20 00:20:56 字数 468 浏览 1 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

無處可尋 2024-10-27 00:20:56

我认为这是不可能的。

我前段时间已经尝试过类似的方法,我发现的唯一解决方案是动态创建一个存储过程,调用它,最后删除它。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文