Display table in Database
<%@ 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>