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
2009-07-25 18:23:18
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
2009-07-27 01:33:54
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
2009-07-27 08:12:14