| Author |
Network could not establish connection in jdbc
|
srinivas Doni
Greenhorn
Joined: Jun 02, 2011
Posts: 23
|
|
Hi to all,
I am getting error:"Network could not establish connection", while establishing connection to oracle 10g. and os is xp sp2
//code
try {
String jdbcurl = "jdbc racle:thin:@localhost:1521:" + "ORCL";
Class c= Class.forName("oracle.jdbc.driver.OracleDriver");
Driver d = (Driver) c.newInstance();
Properties p = new Properties();
p.put("user", "scott");
p.put("password", "tiger");
Connection con = d.connect(jdbcurl,p);
System.out.println(con);
} catch (Exception e) {
System.out.println("The exception raised is:" + e);
}
if anybody is familar about this, can tell to me.
regards,
srini
|
 |
 |
|
|
subject: Network could not establish connection in jdbc
|
|
|