如何将listview子项保存到数据库
我想将列表视图子项保存在表中
代码
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
放置一个断点:
这条线是否被击中?一开始,
idx
= 1。如果lstLVDetails.ListItems.Count
=1,您将永远不会点击代码来插入任何内容。Put a breakpoint on:
Is this line ever getting hit? At the start,
idx
= 1. iflstLVDetails.ListItems.Count
=1, you'll never hit the code to insert anything.