Reputation: 1474
I am trying to connect to sql server 2005 instance running on a remote machine from my spring web application. This web application is running in tomcat server. Earlier When I connected to sql server 2000, it worked fine. I used msbase.jar, mssqlserver.jar, msutil.jar to connect to sql server 2000. My connection String was
jdbc:microsoft:sqlserver://192.168.0.38:1433;DatabaseName=AndroidPOC
But now when I try to connect to sql server 2005. Iam getting all sorts of problems. I tried out various things but of no use.
My connection string for sql server 2005 was
jdbc:sqlserver://192.168.0.202;instanceName=INSTANCE_NAME;DatabaseName=MYDATABASE
Please help me with the steps to connect to 2005 sql server.
Upvotes: 2
Views: 11200
Reputation: 2036
MSSQLSERVER-JDBC and Working With Connection will address all your questions.
Upvotes: 0