Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将 mysql 查询合并到 vba 中的消息框中。我想做的是当用户使用 dgv 将数据发送到数据库时。我怎样才能得到一个消息框来显示有多少记录作为更新进入,有多少作为插入进入。
仅供参考,我正在使用重复密钥更新功能。
谢谢
查看一些代码可能会有所帮助,但您只需要设置一个变量来表示您要显示的每个元素(例如 nUpdates 和 nInserts)。然后只需在消息框中显示该变量:
MsgBox("Records going in as updates:" & nUpdates & vbNewLine & vbNewLine & _ "Records going in as inserts:" & nInserts)