I just looked at some tutorials Ruby on Rails, and I noticed that they use a lot of code on the command line, but do not feel comfortable with it only when it comes to database, my question is: There are tools you can use it visually ? ps: for my applications I want to use MySQL
-
Any application you write that needs to interface with a database will require you to learn SQL. Whilst there are GUIs that can help, tbh it's not a difficult language. You may as well take the plunge and start learning.eggyal– eggyal2013-09-19 19:28:05 +00:00Commented Sep 19, 2013 at 19:28
-
@ggyal, I know how use SQL, but I want a visual application for use with databasesBruno Casali– Bruno Casali2013-09-19 19:37:31 +00:00Commented Sep 19, 2013 at 19:37
-
If you know SQL, what is it that you expect a GUI to do for you?eggyal– eggyal2013-09-19 19:38:26 +00:00Commented Sep 19, 2013 at 19:38
-
Just do not like the look :/Bruno Casali– Bruno Casali2013-09-19 20:21:59 +00:00Commented Sep 19, 2013 at 20:21
Add a comment
|
2 Answers
the best tool I've used so far is SequelPro
absolutely amazing tool and you can use it for free too!
Comments
MySQL has a free application with a GUI interface to MySQL:
http://dev.mysql.com/downloads/tools/workbench/
If you're willing to pay, the best GUI app I've used is SQLyog:
1 Comment
ChoNuff
Oh, also, there's phpMyAdmin, which is a php MySQL website that you can run on the server. It does some strange things, though, so I wouldn't really recommend it.