6일차 Swing02 클래스 (JDBC 연동)


2014학년도 겨울 심화학기/JAVA

Written by 긍지높은취객 on 2014. 12. 15. 16:03

 
import java.sql.*;

public class Swing02
{
         public static void main(String [] args)
        {
                try
               {
                        Class. forName("com.mysql.jdbc.Driver"); // jdbc 드라이버 로드
                       Connection conn = DriverManager.getConnection( "jdbc:mysql://localhost:3306", "root", "1234" ); // 연결
                        System. out.println("JDBC Connection Complete!");
               }
                catch(Exception e )
               {
                        System. out.println(e .getStackTrace ());
               }
        }
}