1. 오라클
<%
String DB_URL = "jdbc:oracle:thin:@localhost:1521:ORCL";
String DB_USER = "scott"; // DB USER명
String DB_PASSWORD = "tiger"; // 패스워드
Connection con = null;
Statement stmt = null;
ResultSet rs = null;
String sql=null;
try
{
Class.forName("oracle.jdbc.driver.OracleDriver");
con = DriverManager.getConnection(DB_URL, DB_USER, DB_PASSWORD);
}catch(SQLException e){out.println(e);}
%>
2. mysql
<%
Connection conn = null; // null로 초기화 한다.
try{
String url = "jdbc:mysql://localhost:3306/jdbcTest"; // 사용하려는 데이터베이스명을 포함한 URL 기술
String id = "testid"; // 사용자 계정
String pw = "testpw"; // 사용자 계정의 패스워드
Class.forName("com.mysql.jdbc.Driver"); // 데이터베이스와 연동하기 위해 DriverManager에 등록한다.
conn=DriverManager.getConnection(url,id,pw); // DriverManager 객체로부터 Connection 객체를 얻어온다.
out.println("제대로 연결되었습니다."); // 커넥션이 제대로 연결되면 수행된다.
}catch(Exception e){ // 예외가 발생하면 예외 상황을 처리한다.
e.printStackTrace();
}
%>
'프로그래밍 > JSP' 카테고리의 다른 글
[jsp] remoteAddr 이 IPv6 주소를 리턴할때 IPv4로 바꾸는 방법 (0) | 2014.12.02 |
---|---|
클라이언트 실제 IP 확인하기 (0) | 2014.12.02 |
JSTL 변수를 스크립트릿에서 사용하는방법 (0) | 2014.11.29 |
[JSTL] List결과값에 대해 Index별 접근 (0) | 2014.11.18 |
[스트랩][JSP]한글파라미더 UTF-8처리 (쿠키 cookie 예제) (0) | 2014.10.01 |