import javax.sql.*;
import java.sql.*;
import oracle.jdbc.driver.*;
import oracle.jdbc.pool.*;
public class DataSource {
public static void main(String[] args){
try{
OracleDataSource ods = new OracleDataSource();
ods.setUser("yourName");
ods.setPassword("mypwd");
ods.setDriverType("thin");
ods.setDatabaseName("ORCL");
ods.setServerName("localhost");
ods.setPortNumber(1521);
Connection conn = ods.getConnection();
}catch(SQLException se){
se.printStackTrace();
}
}
}
Thứ Ba, 21 tháng 1, 2014
Get connection from DataSource - Oracle (kết nối từ DataSource Oracle trong java)
04:17
No comments
Đăng ký:
Đăng Nhận xét (Atom)
0 nhận xét:
Đăng nhận xét