當前位置:首頁 » 數據倉庫 » jspselect資料庫中
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

jspselect資料庫中

發布時間: 2023-07-09 14:45:03

① jsp select標簽中的選項 從資料庫表中讀取 的實現方法

<select
name="classId">
<%
Connection
con
=
//得到資料庫連接
Statement
statement=con.createStatement();
ResultSet
rst=statement.executeQuery("sql取得內容");
while(rst.next())
{
//循環得到每一項
out.println(trans("<option
value="+rst.getString("classId")+"></option>"));
}
con.close();
%>
</select>

② 如何用jsp顯示資料庫中的數據

用jsp顯示資料庫中的數據的方法:
1、通過jdbc建立資料庫連接:
Connection connection = DriverManager.getConnection(
"jdbc:odbc:data", "Steve", "password");
2、創建查詢的statement:
Statement statement = connection.createStatement() ;

3、執行查詢:
ResultSet resultset =
statement.executeQuery("select * from tableName") ;

4、循環輸出獲取到的數據:
while(resultset.next()){
。。。。。。
}

5、綜合1-4的完整代碼如下:
<%@ page import="java.sql.*" %>
<% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); %>
<HTML>
<HEAD>
<TITLE>The tableName Database Table </TITLE>
</HEAD>

<BODY>
<H1>The tableName Database Table </H1>
<%
Connection connection = DriverManager.getConnection(
"jdbc:odbc:data", "Steve", "password");

Statement statement = connection.createStatement() ;
ResultSet resultset =
statement.executeQuery("select * from tableName") ;
%>

<TABLE BORDER="1">
<TR>
<TH>ID</TH>
<TH>Name</TH>
<TH>City</TH>
<TH>State</TH>
<TH>Country</TH>
</TR>
<% while(resultset.next()){ %>
<TR>
<TD> <%= resultset.getString(1) %></td>
<TD> <%= resultset.getString(2) %></TD>
<TD> <%= resultset.getString(3) %></TD>
<TD> <%= resultset.getString(4) %></TD>
<TD> <%= resultset.getString(5) %></TD>
</TR>
<% } %>
</TABLE>
</BODY>
</HTML>