无法显示记录集

时间:2016-08-25 14:02:42

标签: vba recordset

(s, a_1) -> s_1, (s, a_2) -> s_2

我可以在函数中显示记录集(参见注释)。 但我不能在sub中执行此操作,我收到以下错误消息:

  

运行时错误'13':   类型不匹配

1 个答案:

答案 0 :(得分:1)

你完全绕过命令对象,目前只是坐在那里存储命令文本和连接。

实际上use the command object

set data = commandObject.execute()

至于错误,MsgBox rs无效 - 您希望看到rs对象的字符串表示形式?

如果你想要第一个值:

if not rs.eof then msgbox rs.collect(0)