vote up 6 vote down star
2

Hi all

I have recently installed Ruby on Rails on my new Ubuntu machine (first time for me) and i was working through a demonstration on setting up a sample blog.

Basically, i came to the part of setting up the mysql database and would rather use a visual MySQL tool to do this rather than command line.

What is best to use? and how do o get it?

Thanks all.

flag

33% accept rate

12 Answers

vote up 11 vote down
sudo apt-get install mysql-admin mysql-query-browser

Both of these are desktop apps.

link|flag
vote up 4 vote down

I use navicat and the native mysql gui admin and query browser. they run perfectly well under ubuntu, although not native to it.

link|flag
There is a native version of the MySQL GUI Tools for Ubuntu, which you can use (or you can run the Windows version using Wine). – Cd-MaN Sep 18 '08 at 8:48
vote up 2 vote down

Another alternative:

SQLBuddy

link|flag
vote up 1 vote down
sudo apt-get install phpmyadmin
link|flag
vote up 1 vote down

I find SQuirreL SQL Client very appealing.

link|flag
vote up 0 vote down

Webyog is a good non-free alternative

link|flag
vote up 0 vote down

PHPMyAdmin is definitively a friend there.

phpMyAdmin is a tool written in PHP intended to handle the administration of MySQL over the Web. Currently it can create and drop databases, create/drop/alter tables, delete/edit/add fields, execute any SQL statement, manage keys on fields, manage privileges,export data into various formats and is available in 55 languages. GPL License information.

It is a great web-based tool. To unstall it, simply run the following command:

sudo apt-get install phpmyadmin
link|flag
vote up 0 vote down

You also have DBDesigner 4.

link|flag
vote up 0 vote down

Thanks all.

I will try either the phpMyAdmin as i have had experience of using it in the past.

I still have a bit of a way to go to understand how to connect to the 3 database types that RoR uses but we shall see.

Cheers

link|flag
vote up 0 vote down

I'm using SQLyog under Wine and it works like a charm.

sudo apt-get wine
wget http://www.webyog.com/downloads/SQLyog71.exe
wine SQLyog71.exe

Also keep in mind that in Rails to create your db you can do a

rake db:create
link|flag
vote up 0 vote down

I recommend Navicat.

It certainly is one of my main tools in maintaining K-12 education e-learning sites ... I never had a warm fuzzy feeling about phpMyAdmin and other tools in this category never measured up to Navicat.

also, Support has always been A1 over the years as well.

link|flag
vote up 0 vote down

"MySQL Workbench" is also quite nice.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.