in my system sytemproperties show the path c:\Program Files\Microsoft SQL Server\100\DTS\Binn\ so it's path is not issues
|
|
Your question is confusing; I would recommend that you elaborate a bit more. But if I understand you correctly, you're saying that have a problem having a JSP connect to MS SQL Server.
I interpret this to mean that you have SQL Server installed AND you've also got the JDBC driver JARs in your CLASSPATH, not PATH. If neither thing is true, it'll help to make it so. I would recommend that you put the SQL Server JDBC JARs in the WEB-INF/lib directory of your web deployment. It's automatically in your CLASSPATH that way. Which servlet/JSP engine are you using? Knowing the version will help as well. Be sure that you know how to set CLASSPATH properly for your application. Setting a system environment variable is not the right way. If you've done all that, you need to put the proper connection code into your JSP. It'll look something like this:
This link from Microsoft might help. I'd recommend that you learn JSTL and not put scriptlet code in your JSPs. |
||
