vote up 0 vote down star

in my system sytemproperties show the path c:\Program Files\Microsoft SQL Server\100\DTS\Binn\ so it's path is not issues

flag

1 Answer

vote up 0 vote down

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.

"...in my system sytemproperties show the path c:\Program Files\Microsoft SQL Server\100\DTS\Binn\ so it's path is not issues..."

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:

Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
Connection conn = DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:1433/database", "userName", "password");

This link from Microsoft might help.

I'd recommend that you learn JSTL and not put scriptlet code in your JSPs.

link|flag
Do you think that he will accept your answer? – 01 Sep 26 at 21:09
I can't tell, based on the incoherent question and zero reputation and acceptance rate. One can hope... – duffymo Sep 26 at 22:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.