复杂数据库设置的开发环境?

发布于 2024-12-10 17:09:29 字数 1459 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白云不回头 2024-12-17 17:09:29

一个简单、有效但不可执行的策略是使用 MySQL 事务。我们有一个小团队和一个小型开发服务器,这对我们来说效果很好。如果您有一个数据库包装类(或类似的类),您可以让它在创建时开始事务,并在销毁时回滚。显然,有人可以在那里调用 commit,或者手动打开连接,但这确实有帮助。小型开发团队可能可以使用这种策略,仅此而已,因为很容易将模式传达给新的团队成员。

A simple, effective, but unenforceable tactic is to use a MySQL transaction. We have a small team and a small development server, and this has worked well for us. If you have a database wrapper class (or something of the like), you can have it begin the transaction when it is created, and have it rollback when it destructs. Obviously, someone could call commit in there, or manually open up a connection, but it does help. Small development teams can probably use this tactic and nothing more, as it is easy to communicate the pattern to new team members.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文