Rails mysql2 数据库...它在哪里?
是的,这很愚蠢。也许我正在寻找错误的关键词。 Rails 文件夹中的 db 文件到底在哪里?我真的需要编辑一些东西,我认为这很荒谬,我试图使用控制台,却遇到了一大堆错误,并且在删除记录时遇到了麻烦。 (即如果它是 sqlite3,它将位于 db 文件夹中)。
....拔掉头发
yeah, it's pretty stupid. maybe i'm searching for the wrong keywords. where the hell is the db file in the rails folder? I really need to edit stuff and I think it's ridiculous I'm trying to use console and getting a shitload of errors and having trouble deleting records, of all things.
(ie if it was sqlite3, it'd be in the db folder).
....pulls hair out
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Rails 需要一个单独的 mysql 服务器运行在同一台或不同的机器上。 MySql 不像 sqlite,它使用文本文件。请咨询您的虚拟主机,他们可能已经设置了 MySql 数据库。如果您想在 Rails 之外直接操作数据库中的数据,请使用 Sequel Pro 之类的工具。
Rails needs a separate mysql server running either on the same, or a different machine. MySql isn't like sqlite, which uses a text file. Check with your web host, they probably have a MySql database set up already. Use something like Sequel Pro if you want to manipulate the data directly in the database outside of rails.