用sql配置apache

时间:2009-09-20 16:27:15

标签: mysql apache configure

我新使用的是Apache Tomcat6.0 我无法通过我的jsp访问sql数据库并获取java.lang.ClassNotFoundException:com.microsoft.jdbc.sqlserver.SQLServerDriver

http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html

尝试了一些步骤

下载的驱动程序mysql-connector-java-5.1.9和mysql-5.0.85-win32 na dkept在tomcat \ lib中修改了web.xml,带有上下文详细信息 但这对我有帮助。 如果可能,请建议并提供步骤。

JSP代码

Driver d = (Driver)Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
Connection con=DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:8080");

我在没有密码的情况下使用sql server WampServer,并成功创建了数据库和表。

1 个答案:

答案 0 :(得分:0)