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 建模,并带有可供使用的虚拟数据。我想做的是让它在用户登录以尝试演示时生成,并在他/她注销或关闭系统后将其删除。解决此类问题的最佳方法是什么?
当用户登录时,您可以在数据库中打开事务并且从不执行提交,然后当他注销时,您只需执行回滚或等待数据库会话到期。
此解决方案易于实施,其他用户看不到更改。
http://dev.mysql.com/doc/refman/5.6/en/commit.html