ADODB 命令?
我用的是vb.net。通常我使用 SQL Server SQLComamnd,但这里我需要使用 ADO。 我有这个,但我卡在最后如何获取数据?
dim strSQL = "Select Name From tblCustomer Where ID = 123"
cnn.Open()
Dim cmd As New ADODB.Command
cmd.CommandType = ADODB.CommandTypeEnum.adCmdText
cmd.ActiveConnection = cnn
cmd.CommandText = strSQL
我如何实际检索该记录? 有没有类似于具有 Reader 的 SQLCommand 的东西?
I'm using vb.net. Usually I used the SQL Server SQLComamnd but here I need to use an ADO.
I have this but I'm stuck at the end of it how to get the data?
dim strSQL = "Select Name From tblCustomer Where ID = 123"
cnn.Open()
Dim cmd As New ADODB.Command
cmd.CommandType = ADODB.CommandTypeEnum.adCmdText
cmd.ActiveConnection = cnn
cmd.CommandText = strSQL
How do I actually retrieve this record?
Is there something akin to the SQLCommand that has Reader?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的执行调用在哪里?
Where's your Execute call?