aspose file tools
The moose likes JDBC and the fly likes Network could not establish connection in jdbc Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "Network could not establish connection in jdbc" Watch "Network could not establish connection in jdbc" New topic
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 = "jdbcracle: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
 
jQuery in Action, 2nd edition
 
subject: Network could not establish connection in jdbc
 
Similar Threads
java.sql.SQLException: Io exception: The Network Adapter could not establish the conn
Detect mysql invalid username/password
Difference between JDBC in 'normal' Java and JSP?
The Network Adapter could not establish the connection in jdbc connection
Not able to connect to the database with my JDBC program