views:

76

answers:

3

I want to learn sql connectivity with swings(java) can any one suggest a good resource available for my purpose.

+1  A: 

I think you want to look up how to use MVC with Swing, where Swing is your View, and your controller handles getting the data into and out of the database via JDBC or an ORM intermediary like Hibernate.

JeeBee
+1  A: 

I assume you want to connect MySQL with Java. To do that you will need MySQL java connector

Link 1 Link 2 A complete tutorial, But long :)

Please add more info. So we can help you more.

Chathuranga Chandrasekara
A: 

Try to use the NetBeans IDE. Among the java templates, there is an application generating a simple swing interface accessing a database. It implements the good practices with JPA.

Pierre