본문 바로가기
Java

Mysql과 자바 연동

by 완기 2020. 3. 18.
728x90
반응형

import java.sql.DriverManager;
import java.sql.SQLException;

public class Oracle01 {

	public static void main(String[] args) {
		String url = "jdbc:Mysql://127.0.0.1:3306/Student";  //mysql 드라이버 url
		String user = "id";  //아이디 
		String password = "pw"; //비밀번호
		try {
			System.out.println("jdbc driver 로딩 성공");
			DriverManager.getConnection(url, user, password);
			System.out.println("연결 성공");
		} catch (SQLException e) {
		}
	}
}

mysql을 이용해서 자바와 연동을 해봤다.

 

 

학교 다닐 때는 오라클로했지만

오라클로 할 때, 고생을 많이 했던터라 이번엔 Mysql로 진행했는데 간단한 연동은 성공했다.

 

아직은 로컬 데이터베이스지만 예전에 아파치를 이용해 서버를 구축했던 기억을 되살려서 서버도 구축해야겠다.

 

 

728x90
728x90

댓글