http://localhost:8080/sybase_db_test.jsp 로 테스트 하는 중인데요.
어느 부분이 잘못된건지 아래처럼 자꾸 IO Exception 이 나거든요.
org.apache.jasper.JasperException: JZ006:
IOException 발견: java.net.ConnectException:
Connection refused: connect
밑에 소스 내용좀 봐주세요.^^
<%@ page language="java" import="java.sql.*" contentType="text/html; charset=KSC5601" %>
<% Class.forName("com.sybase.jdbc2.jdbc.SybDriver");
Connection Conn =
DriverManager.getConnection("jdbc:sybase:Tds:localhost:2439/remote","dba","sql"); Statement stmt = Conn.createStatement();
ResultSet rs = stmt.executeQuery("select * from public_table");
if(rs==null) { out.println("암것도 없다"); } else { out.println("뭔가 있다."); }
stmt.close(); Conn.close(); %>
부탁드립니다. ㅠㅠ
|