gpt4 book ai didi

sql - rs.filter 属性的使用无效?

转载 作者:行者123 更新时间:2023-11-29 09:19:15 24 4
gpt4 key购买 nike

我正在使用 Excel 中的 adodb 连接到 mysql

我正在做:

dpath = Range("B2").Text
atime = Trim(Range("B3").Text)
rtime = Trim(Range("B4").Text)
lcalib = Trim(Range("B5").Text)
aname = Trim(Range("B6").Text)
rname = Trim(Range("B7").Text)
bstate = Trim(Range("B8").Text)


rs.Filter "datapath=dpath and analystname=aname and reportname=rname and batchstate"

但它给了我一个错误,即过滤器属性的使用无效

使用过滤器属性的正确方法是什么?

最佳答案

Filter 是一个属性,而且您在字符串中使用外部变量。过滤器将不知道它们。你需要这样的东西:

rs.Filter = "datapath='" + dpath + "' and analystname='" + aname + "' and reportname='" + rname + "' and batchstate='" + batchstate + "'"

关于sql - rs.filter 属性的使用无效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2835642/

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