gpt4 book ai didi

sql - 将 SQL 中的选定值打印到文本框 VB6

转载 作者:行者123 更新时间:2023-12-05 01:52:54 24 4
gpt4 key购买 nike

我正在尝试从 VB6 中的查询中打印选定的值,这是我的代码

dim query as string
dim stsstring as string
dim rs as adobd.recordset
query = "select status from x where y='"& randomString &"'"
set rs = mainmodule.dbutils.dbconnection.connection.execute(query)
set rs = nothing
stsstring = rs.fields("status")
msgbox stsstring

这里有错误

stsstring = rs.fields("status")

Object variable or with block variable not set

提前致谢!

最佳答案

在尝试从中读取状态字段之前,您已将 rs 设置为空。重新排序您的代码以阅读:

'...
stsstring = rs.fields("status")
set rs = nothing
msgbox stsstring

关于sql - 将 SQL 中的选定值打印到文本框 VB6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71336072/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com