从oracle 10g中检索多行

时间:2012-04-23 15:04:51

标签: html jsp oracle10g

我在oracle中创建了一个表,其中包含college_names,student_name,regno,结果属于每个大学的特定大学和学院,以及存储数据的日期......

现在我想给大学_id和日期,我希望所有的学生名字都有他们的结果和regno在一个像浏览器结构的表中我写了一个html页面给了college_id和日期和一个jsp页面用于检索不同的字段从数据库,但它不工作..这两个页面的代码...

这是我的html页面

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org     /TR/html4/loose.dtd">
<html>
 <head>
 <script>
function check()
{
var a=result.college_id.value;
var b=result.date.value;
if(a==""|| b=="")
{
alert("fill the fields")
}
else
{
result.action="result.jsp";
result.method="post";
result.submit();
}
}

 </script>
 </head>

 <body bgcolor="#cc99ff">
 <form name="result">
 <center>
 <table>
 <tr>
 <td>college_id:</td>
 <td><input type="text" name="college_id"></td>
 </tr>
  <tr>
 <td>date:</td>
 <td><input type="text" name="date"></td>
 </tr>
 <tr>
 <td>
 <input type="Button" value="Submit" onClick="check()">
 </td>
 </tr>
 </table>
 </center>
 </body>
 </html>

现在这是我的jsp页面,用于检索多行......

<html>
<body background="main_BG.jpg">
<%@page language="java"%>
<%@page import="java.sql.*,java.util.*"%>
<%!
Connection con;
PreparedStatement ps;
ResultSet rs;
String college_id;
String college_name;
String regno;
String student_name;
String result;
String date;

%>

<%
try
{
Class.forName("oracle.jdbc.driver.OracleDriver");
con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","pro","pro
");

college_id=request.getParameter("college_id");
date=request.getParameter("date");


ps=con.prepareStatement("select * from add_result where college_id=? and date=?");
ps.setString(1,college_id);
ps.setString(6,date);
rs=ps.executeQuery();

while(rs.next())
{
college_name=rs.getString(2);
regno=rs.getString(3);
student_name=rs.getString(4);
result=rs.getString(5);
}
else
{
    out.println("no data found");
}
}
catch(Exception e)
{

    out.println("<center><b><font color=lightblue>some error occured...please try  again</font></b></center>");
    out.println("<br><br><a href='result.html'><center><b><font color=lightblue>click here to return..</font></b></center>");

}
%>

<center>
<font color=lightblue>
<b>
Information of student with college_id [<%=college_id%>]:
</b>
</font>
</center>
<p style="position:absolute;left:100;top:100">

<table border="2" width="100%">
<th style="color:yellow">
college_name
</th>
<th style="color:yellow">
regno
</th>
<th style="color:yellow">
student_name
</th>
<th style="color:yellow">
result
</th>
<tr>
<td style="color:lightgreen" align="center"><%=college_name%></td>
<td style="color:lightgreen" align="center"><%=regno%></td>
<td style="color:lightgreen" align="center"><%=student_name%></td>
<td style="color:lightgreen" align="center"><%=result%></td>
</tr>

</table>
</p>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

<%
 try
 {
  Class.forName("oracle.jdbc.driver.OracleDriver");
  con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:orcl","pro","pro   ");

  college_id=request.getParameter("college_id");
  date=request.getParameter("date");
  String sql = "select * from add_result where college_id=? and date=?"; 
  ps=con.prepareStatement(sql);
  ps.setString(1,college_id);
  //ps.setString(6,date);
  ps.setString(2,date);
  System.out.println("Sql: " + sql);
  rs=ps.executeQuery();
  // process resultset below
 }
 catch(Exception e)
 {

   out.println("<center><b><font color=lightblue>some error occured...please try again</font></b></center>"); 
   out.println("<br><br><a href='result.html'><center><b><font color=lightblue>click here to return..</font></b></center>");

  }
%>

<center>
<font color=lightblue>
<b>
Information of student with college_id [<%=college_id%>]:
</b>
</font>
</center>
<p style="position:absolute;left:100;top:100">

<table border="2" width="100%">
<th style="color:yellow">
college_name
</th>
<th style="color:yellow">
regno
</th>
<th style="color:yellow">
student_name
</th>
<th style="color:yellow">
result
</th>
<%
 if(rs!=null){
  while(rs.next())
  {
   college_name=rs.getString(2);
   regno=rs.getString(3);
   student_name=rs.getString(4);
   result=rs.getString(5);
%>
 <tr>
  <td style="color:lightgreen" align="center"><%=college_name%></td>
  <td style="color:lightgreen" align="center"><%=regno%></td>
  <td style="color:lightgreen" align="center"><%=student_name%></td>
  <td style="color:lightgreen" align="center"><%=result%></td>
 </tr>
<%
  } // result set loop ends here
 }else{
%>
  <tr>
   <td colspan="4" style="color:red" align="center">No Data Found</td>
   </tr>
<%
 }  //if condition ends here
%>
相关问题