Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<%@page import="java.sql.*"%> <table border=1> <tr><th>Name</th><th>Address</th></tr> <% try{ Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection con = DriverManager.getConnection("jdbc:odbc:student"); Statement st=con.createStatement(); ResultSet rs=st.

executeQuery("select * from data"); while(rs.next()){ %> <tr><td><%=rs.getString("name")%></td><td><%=rs.getString("address")%></t d></tr> <% } rs.close(); st.close(); con.close(); } catch(Exception e){} %> </table>

You might also like