cancel
Showing results for 
Search instead for 
Did you mean: 

Jdbc driver format for MS Sql Server ?

Former Member
0 Kudos

Configuring Communication Channel- need JDBC Driver format and Connection string. Database MS Sql Server 2000, port 1433, Database name: Prototype, Server Name: STPROTO.

Can someone provide sample of what goes in the string:

Jdbc Driver:

Connection:

User Name: Testing

Password: Testing

Many thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi William,

Have you already deployed the drivers (msbase.jar, mssqlserver.jar, msutil.jar).

If so,

The JDBC drivers should be:

com.microsoft.jdbc.sqlserver.SQLServerDriver

And the connection should be:

jdbc:microsoft:sqlserver://STPROTO:1433;DatabaseName=Prototype

Best regards,

Alwin

Former Member
0 Kudos

Just in case anyone is in the same boat as I am....

I'm using the new SQL Server 2005 jdbc driver (sqljdbc.jar). Setup is basically the same, except the driver is now:

com.microsoft.sqlserver.jdbc.SQLServerDriver

And the URL is slightly different as well:

jdbc:sqlserver://host:1433;DatabaseName=name

Answers (1)

Answers (1)

henrique_pinto
Active Contributor
0 Kudos

For the drivers:

http://developers.sun.com/product/jdbc/drivers

Regards,

Henrique.