Basic HTML version of Foils prepared April 15 1997

Foil 14 JDBC Servlet Example (contd.)

From Examples of JDBC -- Microsoft Access CPS616 -- Information Track of CPS -- Spring Semester 97. by Sangeeta Aggarwal,Tom Pulikal,Udayan Pravate(Nancy McCracken) *

1 private void dispResultSet(ResultSet rs, PrintStream out)
2 throws SQLException {
3 //get the resultset metadata from the result set
4 ResultSetMetaData rsmd = rs.getMetaData();
5 //get the # of columns in the table and display the results
6 while (rs.next() ) {
7 for (int I;I &#060= numcols; I++) {
8 //display the values for each column
9 }
10 }
11 }

Table Font Size


© Northeast Parallel Architectures Center, Syracuse University, npac@npac.syr.edu

If you have any comments about this server, send e-mail to webmaster@npac.syr.edu.

Page produced by wwwfoil on Thu Aug 14 1997