Eclipse Data Tools Platform
Eclipse Data Tools Platform is a an open-source project developed by the Eclipse community that provides tools for creating, managing, and using data across multiple platforms and data sources.
Eclipse Data Tools Platform supports JDBC, enabling it to connect to databases for which a JDBC driver is available. The Easysoft JDBC-ODBC Bridge extends the number of databases that are available to Eclipse Data Tools Platform by bridging between JDBC and ODBC. You can then also work with data from back ends for which an ODBC driver is available. For example, you can connect Eclipse Data Tools Platform to Microsoft Access by using the Easysoft JDBC-ODBC Bridge and the ODBC driver for Microsoft Access.
These steps show how to work with ODBC data in Eclipse Data Tools Platform on Windows:
- Configure a system ODBC data source for the database that you want to connect to in Eclipse Data Tools Platform.
To do this, use the 32-bit version of ODBC Data Source Administrator on your Eclipse Data Tools Platform machine. On some versions of Windows, this is located in Control Panel > Administrative Tools. On some version of Windows, you need to search for "ODBC" in the taskbar search box. The 32-bit version of ODBC Data Source Administrator should be clearly labelled. If in doubt, in the Windows Run dialog box, enter:
%windir%\syswow64\odbcad32.exe
- Download the Easysoft JDBC-ODBC Bridge.
- Install and license the Easysoft JDBC-ODBC Bridge on the machine where you created the data source.
For installation instructions, refer to the Easysoft JDBC-ODBC Bridge documentation.
- In Eclipse, create a new General Project.
- Create a
lib
folder under the new project's directory structure in your Eclipse workspace. - Copy the Easysoft JDBC-ODBC Bridge JAR file,
EJOB.jar
to thelib
folder.EJOB.jar
is installed in the following location on the machine where you install the Easysoft JDBC-ODBC Bridge:easysoft_install\Jars
On 64-bit Windows, the default location for
easysoft_install
isdrive:\Program Files (x86)\Easysoft Limited\Easysoft JDBC-ODBC Bridge
. - In Eclipse, choose the Open Perspective icon..
The Open Perspective dialog box is displayed.
- Choose Database Development, and then choose Open.
- In the Data Source Explorer pane, right-click Database Connections, and choose New.
- Choose Generic JDBC from the list, enter "Easysoft JDBC-ODBC Bridge" in the space provided, and then choose Next.
- Complete the dialog box's General fields:
Setting Value Database Dummy
URL jdbc:easysoft://localhost/MyODBCDataSource:LogonUser=MyWindowsUser:LogonPassword=MyWindowsPassword
User name Dummy
Password Dummy
- Choose the New Driver Definition button.
The New Driver Definition dialog box is displayed.
- Choose Generic JDBC Driver from the list and then choose the JAR List tab.
- Choose the Add JAR/Zip... button. Browse to the
lib
folder and then chooseEJOB.jar
- In the Properties tab, enter the driver URL shown earlier into the Connection URL box.
- In the Driver Class box, enter
easysoft.sql.jobDriver
. Choose OK and the Finish - In the Data Source Explorer pane, right-click the new connection, and then choose Connect.
- In the Data Source Explorer pane, right-click the new connection, and then choose Open SQL Scrapbook.
- In the SQL Scrapbook pane, choose Generic JDBC_1_x from the Type list. Choose New Generic JDBC from the Name list.
- Execute a SQL query against the new database connection. For example:
select * from suppliers
The New Connection Profile dialog box is displayed.
Execute the query by pressing ALT+X.