how to setup JDBC in Eclipse?

Select the option of Add External Jar from the Build path and then browse to the location where the Jar is downloaded, select it and add it.

If you are not able to find the Jar while browsing through build path, check the location in windows explorer and confirm that it is where you are searching for it.


You asked how to "set up jdbc in eclipse". Here is my take on your question. If this isn't the answer to your question maybe it will help someone else.

Also - I'm using kepler eclipse. (really jboss dev studio version based on kepler)

First set up the driver.

Preferences -> Connectivity -> Driver Definitions

Click Add... and follow the prompts. You will be able to test the connection at this point. Eclipse makes it obvious how! (Click the Test connection button)

Close the Preferences window. In the main window

Window -> Show View... -> Data Source Explorer

Right click on Database Connections. Select New... and follow the prompts.

You'll be able to open the connection and browse your database.

As far as JPA-enabling your application, there may be a way to have eclipse set that up (ie right click on your project and maybe there is something in the context menu). It would set up a persistence.xml file in the right place and maybe other things. I don't know off the top of my head.

Hope this helps.


If you're wanting to include a JAR file to your Eclipse project, you would generally create a 'lib' folder inside the project folder, and put the file in there. You then need to tell eclipse to include it in your class path so your code will compile and run inside eclipse.

To do that: - Go into the properties of your project - Select 'Java Build Path' in the left hand column - Select the 'Libraries' tab in the centre part of the window - Click the Add JARs button - this will give you a list of your projects in eclipse - expand your project and into the lib folder - your jar will be there. - Select the JAR, click OK, and OK again out of the properties window.

Or, you can just right-click the jar and click BuildPath->Add to Build Path.