관리 메뉴

moozi

oracle 연결 본문

TIS_2021/인공지능2021_1기

oracle 연결

moozi 2021. 4. 6. 13:50
	try {
			//oracle jdbc드라이버 로드
			Class.forName("oracle.jdbc.driver.OracleDriver");// jdbc driver load
			//Connection
			Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe","ora_user","hong");// 연결
			System.out.println("연결완료");
		}catch(Exception e) {
			
		}finally {}

'TIS_2021 > 인공지능2021_1기' 카테고리의 다른 글

04/07 haksa  (0) 2021.04.07
04/06 haksa  (0) 2021.04.06
년도,상품별 판매갯수합계 판매되지 않은 상품도 출력하기  (0) 2021.03.31
자바연습문제풀이  (0) 2021.03.29
3/23 haksa  (0) 2021.03.23
Comments