VB.Net中的循环存储过程(win形式)

发布于 2024-08-30 19:06:50 字数 331 浏览 13 评论 0原文

我正在尝试为备份系统运行 for 循环,并在其中运行一个将循环的 SP。下面是对我不起作用的代码。

请问有什么想法吗?

Dim TotalTables As Integer
Dim i As Integer

TotalTables = 10
  For i = 1 To TotalTables
 objDL.BackupTables(220, i, 001) ' (This is a method from the DL and the 3 parameters are integars)
 Next

我尝试了 SP,它在 SQLServer 中运行得很好

I am trying to run a for loop for a backup system and inside that i want to run a SP that will loop. Below is the code that does not work for me..

Any ideas please?

Dim TotalTables As Integer
Dim i As Integer

TotalTables = 10
  For i = 1 To TotalTables
 objDL.BackupTables(220, i, 001) ' (This is a method from the DL and the 3 parameters are integars)
 Next

I tried the SP and it works perfectly in SQLServer

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

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

发布评论

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

评论(1

酒废 2024-09-06 19:06:50

第三个参数不好,应该是:

objDL.BackupTables(220, i, 1)

Third parameter is bad, should be:

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