JDBC 데이터베이스 연결 경험 치 기술
1.Oracle 8/8i/9i 데이터베이스(thin 모드)
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url="jdbc:oracle:thin:@localhost:1521:orcl"; //orcl SID
String user="test";
String password="test";
Connection conn= DriverManager.getConnection(url,user,password);
2.DB2 데이터베이스
Class.forName("com.ibm.db2.jdbc.app.DB2Driver ").newInstance();
String url="jdbc:db2://localhost:5000/sample"; //sample
String user="admin";
String password="";
Connection conn= DriverManager.getConnection(url,user,password);
3.Sql Server 7.0/2000 데이터베이스
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=mydb";
//mydb
String user="sa";
String password="";
Connection conn= DriverManager.getConnection(url,user,password);
4.Sybase 데이터베이스
Class.forName("com.sybase.jdbc.SybDriver").newInstance(); String url =" jdbc:sybase:Tds:localhost:5007/myDB";//myDB 는 데이터베이스 이름 Properties sys Props=System.getProperties()입 니 다.SysProps.put("user","userid"); SysProps.put("password","user_password"); Connection conn= DriverManager.getConnection(url, SysProps);
5.Informix 데이터베이스
Class.forName("com.informix.jdbc.IfxDriver").newInstance(); String url = "jdbc:informix-sqli://123.45.67.89:1533/myDB:INFORMIXSERVER=myserver; user=testuser;password=testpassword"; //myDB 는 데이터베이스 이름 Connection conn=DriverManager.getConnection(url)입 니 다.
6.MySQL 데이터베이스
Class.forName("org.gjt.mm.mysql.Driver").newInstance(); String url ="jdbc:mysql://localhost/myDB?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1"//myDB 는 데이터베이스 이름 Connection conn=DriverManager.getConnection(url)입 니 다.
7.PostgreSQL 데이터베이스
Class.forName("org.postgresql.Driver").newInstance(); String url ="jdbc:postgresql://localhost/myDB"//myDB 는 데이터베이스 이름 String user="myuser";String password="mypassword"; Connection conn= DriverManager.getConnection(url,user,password);
8.access 데이터 베 이 스 는 ODBC 를 직접 사용 합 니 다.
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver") ;String url="jdbc:odbc:Driver={MicroSoft Access Driver (*.mdb)};DBQ="+application.getRealPath("/Data/ReportDemo.mdb");Connection conn = DriverManager.getConnection(url,"","");Statement stmtNew=conn.createStatement() ;
2.JDBC 연결 MySql 방식
다음은 JDBC 로 MySql 을 연결 하 는 작은 튜 토리 얼 입 니 다.
1.드라이버 찾기
MySQL 에서 현재 제공 하 는 자바 드라이버 는 Connection/J 입 니 다.MySQL 공식 사이트 에서 다운로드 할 수 있 고 mysql-connector-java-3.0.15-ga-bin.jar 파일 을 찾 을 수 있 습 니 다.이 드라이버 는 순수한 자바 드라이버 로 다른 설정 을 할 필요 가 없습니다.
2.동적 지정 classpath
실행 할 때 classpath 를 동적 으로 지정 하려 면 실행 할 때-cp 방식 을 사용 합 니 다.그렇지 않 으 면 위의.jar 파일 을 classpath 환경 변수 에 추가 합 니 다.
3.드라이버 불 러 오기
try{ Class.forName(com.mysql.jdbc.Driver); System.out.println(Success loading Mysql Driver!);}catch(Exception e){ System.out.println(Error loading Mysql Driver!); e.printStackTrace();}
4.연 결 된 url 설정
jdbc:mysql://localhost/databasename[?pa=va][&pa=va]
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
MySQL에서 JSON 인덱싱 - aarondfrancis사람들은 종종 MySQL로 JSON을 인덱싱할 수 없다고 말하지만 완전히 정확하지는 않습니다. MySQL로 JSON 열을 인덱싱하는 것은 완전히 가능합니다! 사람들은 종종 MySQL로 JSON을 인덱싱할 수 없다고 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.