web2py:如何重命名表?

发布于 2024-12-06 13:20:08 字数 298 浏览 0 评论 0原文

如何在 web2py 中重命名数据库表?如果没有直接的方法,最好的解决方法是什么?我发现的只是这个线程 http://groups.google.com/group/web2py/browse_thread/thread/ef724508324347e2/7966a423c293bdec web2py 的创建者表示他没有一个简单的方法。

How do I rename a database table in web2py? If there is not a direct way, what is the best workaround to do this? All I found was this thread http://groups.google.com/group/web2py/browse_thread/thread/ef724508324347e2/7966a423c293bdec where the creator of web2py says he does not have an easy way.

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

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

发布评论

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

评论(1

执笔绘流年 2024-12-13 13:20:08

在运行 web2py 时更改数据库架构

db.executesql('ALTER TABLE old_name RENAME TO new_name;')

这不会更改您的代码!只有您可以更改您的代码。

因此,如果您只执行一次此操作,例如因为您有一个难看或不明确的表名并且想要重构您的代码,那么最好不要使用 web2py 更改数据库模式中的表名。我将这样做。

  • 停止应用程序

  • 使用 sqlite3 控制台程序或您使用的任何数据库管理程序重命名数据库模式中的表。我想这可能是您真正的问题,因为您习惯于使用 web2py 作为数据库管理程序。好吧,我想您将必须学习如何使用 sqlite3 控制台程序。

  • 更改模型中的代码

  • 重新启动应用程序。

但是,如果您确实坚持仅使用 web2py 来管理数据库,那么类似这样的操作应该可行:

  • 创建一个新控制器,例如“table_rename”添加行

    db.executesql('ALTER TABLE old_name RENAME TO new_name;')

添加到控制器

  • 浏览到 application/table_rename

  • 停止应用程序

  • 更改您的模型代码

  • 删除 table_rename

  • 重新启动应用程序。

To change the database schema while running web2py

db.executesql('ALTER TABLE old_name RENAME TO new_name;')

This will not change your code! Only you can change your code.

So, if you are only doing this once, say because you have an ugly or ambiguous table name and want to refactor your code, then it is likely best not to use web2py to change the table name in the database schema. Here is how I would do it.

  • Stop the application

  • Rename the table in the db schema using the sqlite3 console program, or whatever database management program you use instead. I guess this might be your real problem, because you are accustomed to using web2py as your database management program. Well, I guess you will have to learn how to use the sqlite3 console console program.

  • Change the code in your model

  • Restart the application.

However, if you really insist on using web2py only to manage your database, then something like this should work:

  • Create a new controller, say 'table_rename' Add the line

    db.executesql('ALTER TABLE old_name RENAME TO new_name;')

to the controller

  • Brows to application/table_rename

  • Stop the application

  • Change your model code

  • Remove table_rename

  • Restart application.

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