将 Ruby 与通过 MAMP 安装的 MySQL 一起使用
我是新手。这里有 3 个问题。谢谢。
1) 如果我在 Mac 上通过 MAMP 安装了 MySQL,我可以在 Ruby 应用程序中使用 MySQL(即如果我当然安装 Ruby)。
我的理解是 MAMP 是一个 php/mysql 包,所以我不知道如何使用 Ruby。即显然没有 PHPMyAdmin for Ruby..
2) 我应该单独安装 MySQL 以与 Ruby 一起使用吗?
3)如果我确实需要单独安装MySQL,例如,如果我在命令行中创建数据库,如何让计算机知道我正在尝试使用哪个MySQL?
I'm a newbie. Here's 3 questions. Thank you.
1) If I have MySQL installed through MAMP on my Mac, can I use the MySQL in Ruby applications (i.e. if I install Ruby of course).
My understanding was that MAMP was a php/mysql package so I wouldn't know how to use Ruby with it. i.e. obviously no PHPMyAdmin for Ruby..
2) Should I do a separate install of MySQL to use with Ruby?
3) If I do need a separate install of MySQL, how do I let the computer know which I am trying to use if I make a database in the command line for example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
1)是的,您可以,只需指向正确的插座即可。 Mac 上已经安装了 Ruby。
所以你可以使用 PhpMyAdmin,但我会选择 Sequel Pro。
2)不是强制性的,如果你这样做,先安装brew并通过它进行设置,这真的很简单。
3) 应用程序将使用套接字或您设置的端口。在命令行中,这取决于您设置的路径。
1) Yes you can, just point to the proper socket. And Ruby is already setup on Mac.
So you can have your PhpMyAdmin but I'd go for Sequel Pro.
2) Not mandatory, if you go this way, install brew first and set it up through it, it's really easy.
3) Apps will use sockets or the port you setup. In command line, it would depend on the Path you did setup.
从 Ruby 使用 MAMP 的 MySQL 不是最简单的方法,但我讨厌在一台机器上拥有两个相同的数据库服务器。幸运的是,这个问题已经被提出并回答了之前。简短版本:是的,但是当你构建 mysql gem 时会有一些繁琐的事情。
从长远来看,更好的解决方案可能是使用其他管理器,例如 Homebrew 或 MacPorts 管理 MySQL 和 Ruby。我坚持使用 OS X 中的原生 PHP,但 MacPorts 有很多漂亮的 PHP 东西可供好奇的人使用。
Using MAMP's MySQL from Ruby not the easiest approach, but I hate to have two of the same database server on one machine. Fortunately, this question has been asked and answered before. Short version: yes, but there will be fiddly bits when you build your mysql gem.
A better solution in the long run might to be using another manager such as Homebrew or MacPorts to manage MySQL and Ruby. I stick with the stock PHP in OS X, but MacPorts has lots of nifty PHP stuff available for the curious.