사용자 도구

사이트 도구


tag:jdbc

TAG: jdbc

문서날짜사용자설명
2020/03/13 11:54 주레피 Jdbc * description : 자바 프로그래밍 관련 내용 * author : 주레피 * email : dhan@repia.com * lastupdate : 2020-03-09 Oracle 오라클 연동 import java.sql.DriverManager; import java.sql.SQLException; public class OracleEx01 { public static void main(String[] args) { String driver = "oracle.jdbc.driver.OracleDriver"; String url = "jdbc:oracle:thin:@localhost:1521:xe"; String user = "scott"; String password = "tiger"; try { Class.forName(driver); System.out.println("jdbc drive…