Done这个jsp程序为什么不能连接数据库?
这个jsp程序为什么不能连接数据库? <%@page contentType="text/html"%>
<%@page pageEncoding="GB2312"%>
<%@page import ="java.sql.*" %>
<%
String driverName = "com.microsoft.sqlserver.jdbc.SQLServerDriver";
Class.forName(driverName);
Connection dbConn = DriverManager.getConnection("jdbc:sqlserver://localhost:1433; DatabaseName=VRManagementSystem", "sa", null);
Statement smt=dbConn.createStatement();
String sql="create table persondata1121 "+"(ID char(10),Name char(10))";
smt.execute(sql);
%>
[[it] 本帖最后由 zzxwill 于 2008-6-7 13:29 编辑 [/it]]