Establish JDBC Connectivity Using Mysql, Eclipse, SQL Explorer
Establish JDBC Connectivity Using Mysql, Eclipse, SQL Explorer
SQLExplorer is an Eclipse IDE database plugin that may be used to connect to a database
from Eclipse. The SQLExplorer plugin adds a graphical user interface (GUI) to access a
database with SQL. With SQLExplorer, you can display the tables, table structure, and
data in the tables, and retrieve, add, update, or delete table data. SQLExplorer can also
generate SQL scripts to create and query tables. Thus, using SQLExplorer may be
preferable to using a command-line SQL client. In this tutorial, we shall establish a JDBC
connection with the open source MySQL database from Eclipse 3.0 with the
SQLExplorer plugin.
(The details told here are the same for eclipse 3.1 too)
(The example used for the database is from the “data folder” in your mysql
installation folder.)
Preliminary Setup
A password is not required for the root user. To log in to the database with a
password, specify the command:
>mysql -u root -p
9. Connect to the test database, an example database instance, with the command:
10. >use test
11. Create an example table in the test database. The example table, Catalog, is
composed of ONJava articles. The SQL script to create the example table is listed
below:
12. CREATE TABLE Catalog(CatalogId INTEGER, Journal VARCHAR(25),
13. Publisher Varchar(25),
14. Date VARCHAR(25), Title Varchar(45), Author Varchar(25));
15.
16. INSERT INTO Catalog VALUES('1', 'onjava',
17. 'OReilly', 'April 2005', 'Five Favorite Features from 5.0',
18. 'David Flanagan');
19.
20. INSERT INTO Catalog VALUES('2', 'onjava',
21. 'OReilly', 'Feb 2005', 'Introducing JBoss Remoting',
22. 'John Mazzitelli');
23.
24. INSERT INTO Catalog VALUES('3', 'onjava',
25. 'OReilly', 'March 2005', 'Aspect-Oriented Annotations',
26. 'Bill Burke');
27.
Configuring SQLExplorer
Having installed the SQLExplorer plugin, we shall configure the SQLExplorer plugin in
the Eclipse 3.01 IDE. First, set the SQLExplorer perspective in the Eclipse IDE. Click on
the "Open a perspective" button in the Eclipse IDE to open a perspective. Figure 1
illustrates the "Open a perspective" button.
In the item list, select "Other..." to display the SQLExplorer plugin as shown in Figure 2.
Figure 2. The "Other..." perspective menu item
In the Select Perspective frame, select the SQLExplorer perspective, as shown in Figure
3. By selecting the SQLExplorer perspective, the SQLExplorer plugin features become
available in the Eclipse IDE.
Figure 3. SQLExplorer perspective
Selecting the SQLExplorer perspective displays the features of the SQLExplorer plugin
in Eclipse. The Drivers tab displays the different database drivers that may be used to
connect to different databases. The available databases include DB2, MySQL, Oracle,
Sybase, HSQLDB, SQL Server, and PostgreSQL. We shall configure the SQLExplorer
with the MySQL database. To configure the MySQL driver, right-click on the
MMMySQL Driver node and select Change the Selected Driver, as illustrated in Figure
4.
Figure 4. Modifying the Driver
In the Modify Driver frame, select the Extra Class Path tab and click on the Add button to
add the MySQL driver .jar file (which you downloaded as part of Connector/J) to the
classpath. Figure 5 illustrates adding the MySQL JDBC driver to the Eclipse classpath.
Figure 5. Setting the driver
A connection alias is required to connect to the MySQL database and retrieve the
database tables. A connection alias specifies the connection settings; JDBC driver, URL,
username, and password. Select the Aliases tab in the SQLExplorer perspective. Click on
the "Create new Alias" button to create a new Alias, as shown in Figure 7.
Figure 7. Create a new alias
In the "Create new Alias" frame, specify an alias name. Select the MMMySQL Driver to
create a alias for the MySQL database. Specify the connection URL for the MySQL
database test, jdbc:mysql://localhost/test, in the URL field. Figure 8 shows the
MySQL alias settings.
The MySQL connection alias connects to the MySQL database and retrieves the database
data. To connect to the database, right-click on the MySQL alias node and select Open, as
shown in Figure 10.
Figure 10. Opening an alias
In the Connection frame, specify the User name and Password to log in to the MySQL
database, and click on the OK button. Figure 11 shows the login settings. By default, a
password is not required for the root user.
We configured the Eclipse IDE with the SQLExplorer plugin in the previous section.
Next, we shall retrieve and modify the data from the example table Catalog. If a
database is accessed from a command-line SQL client, table data is retrieved with the
following (all on one line):
This displays the data as a text table. With the GUI SQL client SQLExplorer, the data is
displayed as a structured table. SQLExplorer also generates the SQL scripts to create a
table and select from it. If a table structure is displayed in a command-line client with the
DESC command, only the column name, column type, column size, and "not null" values
get displayed. With SQLExplorer, the indexes, primary key, and foreign key values are
also displayed.
Select the Database Structure View tab in the SQLExplorer perspective in Eclipse. To
display the structure of the Catalog table, select the Database>test>TABLE>Catalog
node in the Database Structure View. Figure 13 shows the Catalog table structure.
Figure 13. Database Structure View
The Columns tab displays the columns listed in the Table below:
Header Description
Column Name The column name in the table.
Data Type The data type for the column.
Size The column size.
Decimal Digits The decimal digits in the column data.
Default Value The default value of the able column.
Accept Null Value Specifies if the column takes null values.
Comments Comments on the table column.
To display the data in the table selected in the TABLE node, select the Preview tab. Figure
14 shows the table data for the Catalog table. Additional information about a table is
displayed with the Indexes, Primary Key, Foreign Key, and Row Count tabs.
Figure 14. Listing the table data
To create a SQL script to create the table, right-click on the table node and select Create
Table Script, as shown in Figure 15.
Figure 15. Creating table script
This creates the SQL script to create the selected table and displays it in the SQL Editor
of the SQLExplorer perspective, which is shown in Figure 16.
The data displayed in the Preview tab of the Database Structure View is retrieved with
the default Select query, which includes all of the columns in the table. To display the
default Select query, right-click on the table node and select "Generate Select in Sql
Editor," as shown in Figure 17.
The default query to retrieve data from the catalog table gets displayed in the SQL Editor,
as Figure 18 illustrates. Note that the SELECT queries displayed in the SQL Editor do not
have a semicolon (;) at the end of the SQL statement.
Figure 18. Select query
The query may be customized to display only some of the columns in the table. For
example, modify the Select query to display all of the columns except the CatalogId
column. To run the SQL script, select the Execute SQL button. The data from the
modified select query gets displayed in the SQL Results frame, as shown in Figure 19.
Figure 19. Selecting table data with custom SELECT query
Next, the catalog table shall be updated with an SQL script in the SQL Editor. For
example, modify the title from "Five Favorite Features from 5.0" to "New Features in
JDK 5.0." The SQL script to update the catalog table is run in the SQL Editor as shown
in Figure 20.
The table data gets updated. Run the default select query on the modified table to display
the modified data in the SQL Results frame. Figure 21 shows the modified catalog table
data.
Figure 21. Modified table data
Next, delete a row from the table with a DELETE SQL statement in the SQL Editor, as
shown in Figure 22. The table row with CatalogId='3' gets deleted from the table.
Run the default select query to display the modified table data. The SQL Results frame
table does not include the deleted row, as shown in Figure 23.
Figure 23. Table data with row deleted
By configuring the SQLExplorer plugin in Eclipse, the IDE acquires the advantages of a
GUI SQL client over a command-line client.
Conclusion
For the example database table, a JDBC connection was established with the MySQL
database. The SQL Explorer may also be used to configure a connection with other
databases, which include DB2, Sybase, Oracle, HSQLDB, SQL Server, and PostgreSQL.
Resources
SQLExplorer
Eclipse IDE
MySQL database