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.
我创建了一个 VBA 代码,它通过服务器上的 mysql 将数据插入到我的数据库中。我的 VBA 代码将由 C++ 或 C# 可执行文件调用。但是如果我的 VBA 代码失败,我想恢复我的数据库的备份。所以我有一些问题:
是否可以在 VBA 中创建我的数据库的备份文件?如果我的代码失败,是否可以将此备份文件恢复到我的主数据库中?
如果没有,是否有其他方法或建议来解决此问题?
我以前没有使用过 MySQL,但它支持事务。您可以在代码失败时进行回滚,并在代码成功时进行提交。