Eclipse PDT and MySQL – SQL Explorer Plugin
Posted by Hodge on Mar 27, 2008 in Eclipse, Programming, Technology, Web Development • 24 comments •
I’ve been using Eclipse PDT for some time now, and since PHP programming invariably involves connecting to a database at some point or another, I wanted to be able to access my MySQL databases from within the Eclipse IDE – even if only to quickly debug SQL statements. I generally use a combination of a locally installed phpMyAdmin, MySQL Administrator, MySQL Query Browser, and now the Eclipse SQL Explorer Plugin, which give me all the functionality I need for Web Application development.
phpMyAdmin, MySQL Administrator and MySQL Query Browser can be installed as follows, by the way:
sudo apt-get install phpmyadmin mysql-admin mysql-query-browser
Installing Eclipse SQL Explorer was pretty straight forward – I simply downloaded the archive package from Sourceforge, saved it to a directory in on my desktop (there is also a standalone client available, so be sure to download “Eclipse SQL Explorer [RCP/Plugin]” if you’re setting it up as an Eclipse plugin – here’s a direct link to the latest plugin file), and extracted the files:
cd ~/Desktop/sqlexplorer
unzip sqlexplorer_plugin-3.5.0.RC5.zip
This created two directories (features and plugins) along with two text files. To install the plugin, I just copied the two directories to my Eclipse root installation directory (see my previous post “Eclipse PDT IDE for PHP MySQL 32 Bit install on 64 Bit Ubuntu“), which is /opt/eclipse32
cp -R features plugins /opt/eclipse32/
Notice there was no need to use the sudo command before copying, since my user owns the eclipse32 folder.
Once installed, I also had to do some additional setup before I could configure SQL Explorer to connect to my local MySQL databases via Eclipse – namely, download and install the Java Connector for MySQL (MySQL JDBC Driver), to enable JDBC connections. The latest driver (5.1 at the time of writing) tar.gz file can be downloaded from the MySQL site here.
Once downloaded, I just extracted the files, and entered the new directory:
cd ~/Desktop/mysqljdbc
tar -zxvf mysql-connector-java-5.1.6.tar.gz
cd mysql-connector-java-5.1.6
The important file here (along with the documentation, of course) is the mysql-connector-java-5.1.6-bin.jar file, which is the driver itself. I guess this could be placed anywhere, since we just need to point the SQL Explorer plugin to it when setting it up in Eclipse, but for convenience and tidiness, I moved it to the /usr/share/mysql directory:
sudo cp mysql-connector-java-5.1.6-bin.jar /usr/share/mysql
With the JDBC driver installed, I could set up the Eclipse SQL Explorer plugin. In Eclipse, I went to Window->Preferences and expanded the new SQL Explorer section, highlighting “JDBC Drivers”, then double clicking on “MySQL Driver” to open the MySQL setup dialog:

In the MySQL Driver setup, I had to point the plugin to the MySQL JDBC Driver, by clicking on the “Extra Class Path” tab, and then clicking “Add” to point it to /usr/share/mysql/mysql-connector-java-5.1.6-bin.jar. Once added, clicking on “List Drivers” will bring up the list of available drivers in the “Driver Class Name” pull down menu. Only one is listed, and it just so happens to be the one we need – com.mysql.jdbc.Driver:

Click OK, and the driver is set up! I also clicked the “Set Default” button, since MySQL is currently the only database I connect to. With the Driver set up, I could then set up a connection to my database system. If the “Connections” view is not already available, it has to be selected via the Window->Show View->Other menu, and clicking on the “Connections” view within the “SQL Explorer” folder in this dialog.
With the Connections View available, I could set up the new connection profile, by right clicking in the view and selecting “New Connection Profile”, which opens up a new dialog, in which the new connection data is input:

It was a pretty simple process to create the connection – I just needed to replace the relevant parameters in the JDBC connections string with my connection details, so
jdbc:mysql://<hostname>[<:3306:>]/<dbname>
became
jdbc:mysql://localhost:3306/mydatabase
Entered the DB username and password, gave the connection a name, selected the newly created MySQL Driver, and clicked OK to save the connection. Double clicking the connection name in the Connections View connects to the DB and brings up an SQL window form which Queries may be run. By default, the results are displayed in a small view at the bottom of the main Eclipse IDE window – although, this can be dragged and placed anywhere. There are also several other views available via the Window->Show View->Other menu within the SQL Explorer section to peruse.
The Eclipse SQL Explorer homepage has extensive documentation available, including a cool section on extending the plugin. Maybe I should learn Java too?
That’s all Folks.
Something not quite right? Inaccuracies or invalid code? Didn’t work for you? Don’t like me using Ss instead of Zs? Add a comment below! All comments are welcome. Except spam, because spam is a bit crap.
|
|
… |
|
|
… |
|
|
… |
|
|
Alldaymall(TM) 7-inch Capacitive Touch Screen Android 4.0 Tablet PC with Allwinner A13 1.0GHz 512MB/4GB WiFi Front-camera (Black) $53.99 Alldaymall owns this trademark exclusively Basic Configuration Operating System: Android 4.0 CPU: Allwinner A13 1.0GHz GPU: Mali-400 RAM: 512MB DDR3 Internal Memory: 4GB Expansion Memory: Support micro SD/TF card up to 32GB Keyboard Type: Virtual keyboard Input Mode: Handwritten and keyboard input Display Screen Screen Size: 7-inch Screen Type: Capacitive 5-point touch screen Screen Resolution:… |
|
|
7” A13 Google Android 4.0 AllWinner Tablet Boxchip Cortex A8 1.2Ghz MID Capacitive Touch Screen G-sensor WIFI, Camera, Skype Video Calling, Netflix, Flash Supported Dragon Touch(TM) MID7134B [By TabletExpress] (4GB Black) $67.98 TabletExpress is ONLY one authorized distributor by Dragon Touch(TM) in North America.Buy genius Dragon Touch (TM) tablet from TabletExpress only. Specification: Operation system: Android 4.0 Support HD Flash 11 Main IC: Allwinner A13 (CPU+ GPU+ VPU) Cortex A9 1.2G Screen: 7 inches 5 Points Capacitive Touch 16:9 .800 * 480 Storage: 4GB Memory: DDR3 512MB Storage Extend: 128MB-32GB SD/TF Sup… |





[...] recently written a post on “Eclipse PDT and MySQL – SQL Explorer Plugin“, for anyone who needs to set up MySQL connections in Eclipse. These icons link to social [...]
[...] for installing and configuring the SQL Explorer Plugin can be found in my previous article – Eclipse PDT and MySQL – SQL Explorer Plugin, since I don’t want to regurgitate [...]
just wanted to say that after looking all over the internet, this was the most useful and informative information I found. The directions were easy to follow and I have no trouble installing my plugin. Just wanted to say thanks, I appreciate it.
Thanks for the positive feedback, Frank! I’m really happy the guide helped you. Good luck with your development projects.
everything works at perfection! tnks man! its a good tutorial to set up eclipse and connect to mysql in debian etch too!! thnks again! i’ve been searching this for more than 2 weeks.
great tutorial!
thanks heaps
Hi,
Thank you for the tutorial. Everything works i have connected my eclipse to phpmyadmin. with the editor the queries works.
Created the connetion everything perfect.
But now my question when write my connection file in php what is the variables values :
$host=”localhost”?
$username=”root” ?
$password=”" ?
(the “?’ means is it the write value? and between”" are the current value not working)
I am getting the problem my php file doesn’t connect to the sql server giving me the error :
“Warning: mysql_connect() [function.mysql-connect]: Can’t connect to local MySQL server through socket ‘/tmp/mysql.sock’ (2) in /home/www/Desktop/deitel&deitel/Test/login/membercreatetable.php on line 8″
Would you please explain to me what i am doing wrong!
thank you
(the “?’ means is it the right value? and between”” are the current value not working)
Hi Abibabou,
the error you’re getting is actually due to the MySql client being unable to locate the socket to connect to the server, and not your PHP script. The client is looking for the socket in /tmp/mysql.sock, but for your istallation, the mysql.sock is located somewhere else. You’ll need to find where this file is on your system (possibly /var/lib/mysql/mysql.sock), which can be done by running:
sudo find / | grep 'mysql.sock'Once you know where it is, edit your my.cnf file (/etc/my.cnf or /etc/mysql/my.cnf – location depends on your system) to tell mysql to point to the correct socket file. If there isn’t a [client] section in the my.cnf file, add it, or if it currently exists, edit the section with the new socket location, e.g.:
[client]socket=/var/lib/mysql/mysql.sock
Save the file, and restart Mysql.
Hope that helps!
[...] to get SQL Explorer linked up to a MySQL Database, which I have covered in a previous tutorial: Eclipse PDT and MySQL – SQL Explorer Plugin. It’s pretty simple, and just involves downloading the Java Connector for MySQL, and pointing [...]
After the installation of SQL Explorer plugin for Eclipse I was not able to connect to any MySQL database. I found your blog post and it learned me (how) to install the MySQL JDBC Driver… Thanks for this useful info!
Code font where achieve?
Thanks a ton! Especially the “Java Connector for MySQL” did the trick for me.
Maarten
In your configuration for phpeclipse what will be the workspace location to run it
@Prantosh – workspace is just located in my home directory, e.g.
/home/username/eclipseworkspace
how to activate the gui environment in phpeclipse after installing all these things as per the instruction given
@Prantosh – sorry I misunderstood
once you have opened Eclipse (in a terminal, execute /path/to/eclipse, e.g. if eclipse is installed in /opt/eclipse then run /opt/eclipse/eclipse), you need to open the PHP Perspective, by going to the menu Window -> Open Perspective -> PHP (if PHP is not listed, click “Other” and then select PHP). When you have thePHP perspective open, you can add more “Views” to it, by going to Window -> Show View -> Other which opens a new dialog window. In this window, expand SQL Development and SQL Explorer, then add the views you want to the PHP Perspective.
I hope that helps.
Thanks man.
Thanks for putting this out there.
After using your instructions and a bit of trial and error I figured out how to set up MySQL dev using Galileo on a Mac. I wrote up an article on it with hopes that someone will find it useful: http://obscuredclarity.blogspot.com/2009/08/setup-mysql-development-in-eclipse.html
Rock on!
Thanks for this information.
BTW, where did you get this pretty black theme for eclipse (I mean one on screenshots)?
I have installed the sql explorer and there is now the new sql explorer view but I cant connect to the database. (I have PDT on Mac and the mysql database is the one in MAMP PRO) I access regulary to my database from my scripts with localhost root and pwd
Now when I try to connect with
jdbc:mysql://localhost:3306/myDababase (or without :3306)
root
***
I have the following error: communication link failure, check your URL
Thanks for help.
Connectors aviable like:
sudo apt-get install libmysql-java
and you can find them in /usr/share/java/mysql-connector-java-.jar
Connectors available like:
sudo apt-get install libmysql-java
and you can find them in /usr/share/java/mysql-connector-java-.jar
[...] sumber : 64bitjungle.com [...]