程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 關於JSP數據庫連接的問題?

關於JSP數據庫連接的問題?

編輯:關於JSP


我的連接程序如下:
----------------------------------------------
<%@page contentType="text/html;charset=GB2312"%>
<%Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=questionnaire";
Connection con= DriverManager.getConnection(url,"sa","801208161");
Statement smt=con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
ResultSet rs;
String sql;
%>
------------------------------------------------------
以下是出錯信息:
An error occurred between lines: 1 and 7 in the jsp file: /opendata.jsp
Generated servlet error:
D: omcatworklocalhost_opendata$jsp.java:56: Class org.apache.jsp.Connection not found.
                Connection con= DriverManager.getConnection(url,"sa","801208161");
                ^
An error occurred between lines: 1 and 7 in the jsp file: /opendata.jsp
Generated servlet error:
D: omcatworklocalhost_opendata$jsp.java:56: Undefined variable or class name: DriverManager
                Connection con= DriverManager.getConnection(url,"sa","801208161");
                                ^
An error occurred between lines: 1 and 7 in the jsp file: /opendata.jsp

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved