반응형
<


package mysql_DB;

import java.sql.*;

public class MySQLconnect {

	public static void main(String[] args) {
		// TODO 자동 생성된 메소드 스텁

		try {
			Class.forName("com.mysql.jdbc.Driver");
			System.out.println("클래스 로드 성공");

			Connection con = DriverManager.getConnection(
					"jdbc:mysql://127.0.0.1:3306/db", "id", "password");
			System.out.println("접속 성공");

			con.close();
		} catch (Exception e) {
			System.out.println(e.getMessage());
		} finally {
			
		}

	}

}


+ Recent posts