JSP

JDBC 연결

김군..... 2011. 5. 2. 22:42
 
연결
Class.forName("com.mysql.jdbc.Driver");
Connection conn = DriverManager.getConnection("jdbc:mysql://219.153.12.14:3306/webdb", "root", "1234");

종료
conn.close();