如何将 recordset.field 转换为字符串

How to convert recordset.field to a string

我目前正在尝试比较查询中列中的某些值以访问字符串向量以查找任何两个值之间的匹配项。

我使用 recordset.fields("column1") 从我想要的列中访问特定记录,但似乎我无法获得匹配项,因为这些值属于不同的数据类型。

如何将 recordset.fields("column1") 中的记录转换为字符串?

谢谢!

如果您在 VBA 中工作,请用 CStr() 函数包围您的值,该函数将 return 将值转换为字符串输出。