> I am trying to connect to db2/400 of as400 through java in WDSC.
> I am usinf the driver ->
> com.ibm.db2.jcc.DB2Driver
> I have put the db2jcc.jar and db2jcc_license_c.jar in classpath.
> //Connect to a database
> try
[quoted text clipped - 5 lines]
> {
> System.out.println("SQL Exception: ");
I strongly recommend you to print out e.
> }
> *******************************************************************************
[quoted text clipped - 6 lines]
>
> where S650B66E=system name
This should be in the DB2 JDBC docs.
I use a URL syntax like:
Connection con =
DriverManager.getConnection("jdbc:db2://localhost:50000/xxxx", "xxxx",
"xxxx");
where xxxx is database, username and password.
Arne
Lew - 30 Dec 2006 03:53 GMT
savita wrote:
>> Do I have to use other url apart from jdbc:db2:192.168.0.10
> This should be in the DB2 JDBC docs.
E.g.,
<http://publib.boulder.ibm.com/infocenter/db2luw/v8/index.jsp?topic=/com.ibm.db2.
udb.doc/ad/cjvjt2cn.htm>
"Syntax for a URL for the DB2 JDBC Type 2 Driver:
jdbc:db2:database
"database
A database alias. The alias refers to the DB2 database catalog entry on the
DB2 client."
This is for the case where there is a database catalog and a Type 2 driver.
> I use a URL syntax like:
>
[quoted text clipped - 3 lines]
>
> where xxxx is database, username and password.
From
<http://www-128.ibm.com/developerworks/db2/library/techarticle/dm-0504vohra/index.html>
"The format of the DB2 JDBC Type 4 driver [URL] is
jdbc:db2://<server>:<port>/<database>"
Can't avow that these are the last words on the subject, just the ones I
turned up googling around a bit.
- Lew
Arne Vajhøj - 30 Dec 2006 04:22 GMT
> <http://publib.boulder.ibm.com/infocenter/db2luw/v8/index.jsp?topic=/com.ibm.db2.
udb.doc/ad/cjvjt2cn.htm>
>
> "Syntax for a URL for the DB2 JDBC Type 2 Driver:
> jdbc:db2:database
> <http://www-128.ibm.com/developerworks/db2/library/techarticle/dm-0504vohra/index.html>
>
> "The format of the DB2 JDBC Type 4 driver [URL] is
> jdbc:db2://<server>:<port>/<database>"
The original post shows the type 4 jar file and class name.
Arne
Lew - 30 Dec 2006 06:58 GMT
> The original post shows the type 4 jar file and class name.
The point being that perhaps use of the Type 2 syntax was not correct, eh?
- Lew