如何在eclipse中连接orecal?
发布网友
发布时间:2022-04-14 00:55
我来回答
共3个回答
热心网友
时间:2022-04-14 02:25
首先导入oracle的数据库驱动:odbc14.jar,到oracle官方去下载。
下面是连接代码:
OracleDataSource ods = new OracleDataSource();
ods.setDriverType("thin");
ods.setServerName(this.getServer());
ods.setDatabaseName(this.getDbName());
ods.setPortNumber(new Integer(this.getPort()).intValue());
ods.setUser(this.getUserid());
ods.setPassword(this.getPassword());
this.conn = ods.getConnection();
this.stmt = this.conn.createStatement();
热心网友
时间:2022-04-14 03:43
public static Connection getConOracle(){
Connection conn = null;
String driverClassName = "oracle.jdbc.driver.OracleDriver";
String url = "jdbc:oracle:thin:@10.10.20.15:1521:orcl";
String user = "snpw";
String password="admin";
try {
Class.forName(driverClassName);
conn = DriverManager.getConnection(url,user,password);
} catch (Exception e) {
e.printStackTrace();
}
return conn;
}
热心网友
时间:2022-04-14 05:17
你只需要熟悉jdbc就可以了 与eclipse等IDE无关。