• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Error opening socket. SQLSTATE=08S01

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
HI,
I posted the same question yesterday and I modify it a little bit but it still has some problem.
Here's my info.
Error:
COM.ibm.db2.jdbc.net.DB2Exception: [IBM][JDBC Driver] CLI0616E Error opening socket. SQLSTATE=08S01
Question:
I have a problem to get the connection from the mainframe db2.
My codes:
Class.forName("COM.ibm.db2.jdbc.net.DB2Driver").newInstance();
Connection db2conn = DriverManager.getConnection("jdbc b2://gateway_host_ip_address ort atabase alias name", "userid","password");
I am running my java ap on NT box and I have the db2java.zip in my classpath.
What else I can do to get this working
Gateway or database alias name?
Thanks
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Mike,
This would happen if the JDBC Server is not up. Start the JDBC Server and rerun your program. It should work fine.
 
reply
    Bookmark Topic Watch Topic
  • New Topic