• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

DB2 SQLSTATE ???

 
Ranch Hand
Posts: 41
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi guys !
This is the exception I am getting while attempting to connect to a DB2 database...

SQL Exception caught: COM.ibm.db2.jdbc.net.DB2Exception: [IBM][JDBC Driver] CLI0614E Error sending to the socket, server is not responding. SQLSTATE=08S01

Can anyone tell where exactly the problem lies...I mean my code or something to do with the server ???
ThanX
Manoj
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Most likely your JDBC Applet Server isn't running. You can start this in your services under NT/2000. Under UNIX OSes, you will need to start the process with somthing like this:
db2jstrt portno
Where portno is the portnumber to be used, I don't remember the default value, but if you specify the port number, you can also specify it when you connect to the server.
 
reply
    Bookmark Topic Watch Topic
  • New Topic