vote up 0 vote down star

ClassNotFoundException

SQlServer Connection page <%@ page import="java.sql.*" %> <% Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver").newInstance(); %> <% Connection conn = DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:1433","",""); Statement stmt = conn.createStatement(); System.out.println("connection done"); %>

i have resin server so solve my problme

flag
Consider putting more thought on the description of the problem. The title of this question is almost identical to your earlier question at stackoverflow.com/questions/1480710/… – simon Sep 26 at 10:02

2 Answers

vote up 0 vote down

how to set class path i m using resin resin in resin automatically add in class path

link|flag
vote up 0 vote down

public static Class forName(String className) throws ClassNotFoundException

Throws: ClassNotFoundException - if the class cannot be located.

I'm going to guess that your com.microsoft.sqlserver.jdbc.SQLServerDriver is not in the classpath

link|flag
support.microsoft.com/kb/313100 – Mobs Sep 26 at 10:19

Your Answer

Get an OpenID
or

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