在 .NET 中对 OracleCommand 进行分组

发布于 2024-08-03 00:19:01 字数 109 浏览 5 评论 0原文

是否可以对 OracleCommand 对象进行分组并迭代集合中的每个 OracleCommand?

有人可以发布示例代码来实现这一目标吗?

谢谢。

安吉洛

Is it possible to group OracleCommand objects and iterate through each OracleCommand in the collection?

Could someone post a sample code in achieving this?

Thanks.

Angelo

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

何处潇湘 2024-08-10 00:19:01

您可以定义一个列表并对其项目进行迭代:

//define a command
OracleCommand cmd1 = new OracleCommand("command", connection);
//set parameters if necessary
...
//do things
...

//declare a List of command
List<OracleCommand> commands = new List<OracleCommand>();
commands.Add(cmd1);

//using the list
foreach (OracleCommand command in commands)
{
     //...execute command and stuff
}

You can define a List and so iterate on its items:

//define a command
OracleCommand cmd1 = new OracleCommand("command", connection);
//set parameters if necessary
...
//do things
...

//declare a List of command
List<OracleCommand> commands = new List<OracleCommand>();
commands.Add(cmd1);

//using the list
foreach (OracleCommand command in commands)
{
     //...execute command and stuff
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文