Easy GUI editor for Mysql

Hey drop us a line about the show. Feel free to ask questions, provide feedback and criticism, or just ramble on about anything your little heart desires.

Moderators: snarkout, Patrick, dann

Post Reply
User avatar
Patrick
Site Admin
Posts: 2519
Joined: Tue Apr 27, 2004 11:38 am
Location: Easton, PA
Contact:

Easy GUI editor for Mysql

Post by Patrick » Tue Mar 07, 2006 10:32 am

I've started working on a project that will involve LAMP. I've used the MySQL Adminstrator program to define my database. Very nice tool. Now I want to insert some rows in my table with something quick and dirty. I don't want to manually issue sql commands on the command line. This gets very tedious. I tried using OO Base and connecting to my database with ODBC. I can connect to the database and view my records but can't edit them. Apparently this is an OO bug. So I've downloaded the trial version of Navicat. It works ok but it's very ugly and not very intuitive. It also doesn't support cut & paste from other apps. You also have to pay after the 30 day trial. Does anyone have a recommendation for GUI to MySQL that I can use to create some records in my database that won't cost anything? If this project works out it could lead to more linux at my job.
Ego contemno licentia

Karl
Posts: 47
Joined: Fri Jul 08, 2005 11:42 am
Location: NJ

Post by Karl » Tue Mar 07, 2006 11:23 am

phpMyAdmin should work for that.

http://www.phpmyadmin.net/

User avatar
Linc
Site Admin
Posts: 345
Joined: Mon Apr 26, 2004 11:54 pm
Contact:

Post by Linc » Tue Mar 07, 2006 12:03 pm

Karl wrote:phpMyAdmin should work for that.

http://www.phpmyadmin.net/
Yeah, i second that. or perhaps turboadmin, but I don't know how far they have come with that yet. when I looked at it a few months ago i thought it was pretty cool.

http://turboajax.com/turbodbadmin.html
-Linc Fessenden

In the Beginning there was nothing, which exploded - Yeah right...

User avatar
Patrick
Site Admin
Posts: 2519
Joined: Tue Apr 27, 2004 11:38 am
Location: Easton, PA
Contact:

Post by Patrick » Tue Mar 07, 2006 2:10 pm

I can't do a apt-get install for phpadmin because they've got port 21 blocked around here so I went and installed turboadmin.
Very nice. Easy to install and work with.
Thanks

Now to start coding some php scripts.
Ego contemno licentia

User avatar
Jza
Posts: 466
Joined: Sun Oct 30, 2005 7:01 pm
Location: Mexico
Contact:

Post by Jza » Tue Mar 07, 2006 6:49 pm

phpmyadmin is a web app so installing a binary is just an overkill IMO the onlything to do with webapps is unzip on your Documentroot (the filder that gets broadcasted) and edit the config file. unless the webapp has a web-config too.

PHPMyAdmin can be administrate by just editing the config. The problem you have with OOoBASE has to do with the permissions and changing a configuration in the MySQL system.Then you will be able to edit also, is documented under http://dba.openoffice.org BTW I recomend using JDBC as opposed to ODBC on Linux, is more straight forward.

Finally there are other MySQL useful programs provided by MySQL as FLOSS such as MySQLCC MySQL-Administrator and a Mysql migration tool to port from Access or Oracle database into mysql.

MySQL Migration Toolkit.
Alexandro COLORADO

User avatar
Jza
Posts: 466
Joined: Sun Oct 30, 2005 7:01 pm
Location: Mexico
Contact:

Post by Jza » Wed Mar 08, 2006 9:45 pm

http://dba.openoffice.org/howto/IgnoreD ... leges.html
Read/Write access rights (privileges) for JDBC/ODBC data sources
The Problem
When working with drivers which not fully support the access to the privileges of the database or returning just incorect information, OpenOffice.org only allows the operations which the driver returns. E.g. when the driver doesn't return the right to insert values into a table even when the database allows it, OpenOffice.org also shows the table in read only mode.
The Solution
The OpenOffice.org JDBC/ODBC-SDBC bridge (more sloppy: OOo's JDBC/ODBC driver) supports to work around the problem in just to return that all rigths are granted, the sytem driver won't be asked in that case.
Alexandro COLORADO

Post Reply