JDBC thin driver is the one I have used to connect to
Oracle in the past.
Depending on your requirements, you can either
- Add the JDBC Driver to your class path
- Uncompress the contents of the jar file in your project
Personally, I think uncompressing the contents into your project is the way to go...as that will allow portability of your application as long as the Database is accessible from other machines.
If you are building a web app, you should include your jar file in WEB-INF/lib
If you want to configure eclipes to connect to your database, here is an example showing a connection to
MySQL
Greetings
Marcus