VBA,ADO.Connection和查询参数
我有excel VBA脚本:
Set cоnn = CreateObject("ADODB.Connection")conn.Open "report"Set rs = conn.Execute("select * from table" )
脚本工作正常,但我想添加参数。例如“where(parentid = myparam)”,其中myparam在查询字符串外设置。我该怎么做?
当然我可以修改查询字符串,但我认为这不是很明智。
一只萌萌小番薯
相关分类