<%@ page contentType="text/html;charset=GB2312" language="java" %>
<%@ page import="java.sql.*"%>
<html>
<head><title>JDBC-ODBC连接 SQL Server</title></head>
<%
Connection conn=null;
try
{
Class.forName("sun.JDBC.odbc.JdbcOdbcDriver");
String strConn="JDBC:odbc:shopData";
String strUser="LENOVO";
String strPassword="";
conn=DriverManager.getConnection(strConn,strUser,StrPassword);
out.println("<h2>JDBC-ODBC连接数据库成功!<h2>");
}
catch(ClassNotFoundException e)
{
out.println(e.getMessage());
}
catch(SQLException e)
{
out.println(e.getMessage());
}
finally
{
try
{
if(conn!=null)
conn.close();
}
catch(Exception e){}
}
%>
</html>
这是源代码。
不懂JSP,不过,你的代码里似乎没看剑服务器信息,是在shopData里包含了吗?
采用ODBC方式访问数据库,必须先配置ODBC.