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.
- What are all the jars required.
- Do i need to update sql server jdbc driver, if yes how.
- The driver class name to be used.
- If possible please provide some sample code using spring jdbc and normal jdbc as well.