如何将listview子项保存到数据库

发布于 2025-01-07 08:21:04 字数 453 浏览 1 评论 0原文

我想将列表视图子项保存在表中

代码

Dim sSQL As String
    Dim idx As Integer
    idx = 1
    With lstLVDetails.ListItems
        For idx = idx To .count
                sSQL = "Insert into sample values ('" & .Item(idx) & "', '" & .Item(idx).SubItems(1) & "') "
                RdoVisPay.Execute sSQL, rdExecDirect
        Next idx
       End 

上面的代码没有显示任何错误,但它没有插入任何值。

我的代码有什么问题。

需要代码帮助...

I want to save the listview subitem in table

Code

Dim sSQL As String
    Dim idx As Integer
    idx = 1
    With lstLVDetails.ListItems
        For idx = idx To .count
                sSQL = "Insert into sample values ('" & .Item(idx) & "', '" & .Item(idx).SubItems(1) & "') "
                RdoVisPay.Execute sSQL, rdExecDirect
        Next idx
       End 

The above code is not showing any error, but it is not inserting any values.

What wrong in my code.

Need code help...

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

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

发布评论

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

评论(1

风情万种。 2025-01-14 08:21:04

放置一个断点:

RdoVisPay.Execute sSQL, rdExecDirect

这条线是否被击中?一开始,idx = 1。如果lstLVDetails.ListItems.Count=1,您将永远不会点击代码来插入任何内容。

Put a breakpoint on:

RdoVisPay.Execute sSQL, rdExecDirect

Is this line ever getting hit? At the start, idx = 1. if lstLVDetails.ListItems.Count=1, you'll never hit the code to insert anything.

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