views:

122

answers:

2

Can anyone please help me on how to create a login form in java swing by using a database connection.

+1  A: 

Here are 2 tutorials you can use

  1. Swing - http://java.sun.com/docs/books/tutorial/ui/index.html

  2. JDBC - http://java.sun.com/docs/books/tutorial/jdbc/index.html

Chuk Lee
+1  A: 

Here's a tutorial to create a simple login form. Replace the pseudo pass check with a check of credentials retrieved via JDBC and you're done. The login form is nothing special...

Bozhidar Batsov