tags:

views:

180

answers:

1

Is there anywhere I can point my IDE to and associate my DB2 driver (db2jcc.jar) to get the JavaDoc support? I looked through what is installed locally on my computer, and there doesn't seem to be anything. Is it available online at all?

+1  A: 

There isn't any javadoc for the DB2 drivers. As nos implied, you might use a other JDBC driver, and configure your IDE to use this alternate Javadoc.

The doc for the DB2 JDBC is directly at IBM website, but it's not in form of a javadoc.

Steve Schnepp
Okay, thanks for answering my question. I was having a weird bug in my code, and debugging through the database layer would have been helpful (to make sure it was using the schema I expected it to be using, etc). Switching to a different database system wasn't really an option in this case, since I wasn't sure I could recreate the bug (and I wasn't going to set up a whole new database for this purpose).
pkaeding
If you are using RAD, the **SQL interceptor plugin** [http://www.ibm.com/developerworks/websphere/library/techarticles/0905_roberts/0905_roberts.html] can be useful to you.
Steve Schnepp