JSP JDBC Samples
ConnCache1.jsp
Connection Cache Sample #1: display the employee table in the database.
  Try it
  Source
     
ConnCache2.jsp
Connection Cache Sample #2: display the username of the connection
  Try it
  Source
     
setupcache.jsp
Sample #1 and sample #2 both make use of a common included JSP file - setupcache.jsp. setupcache.jsp creates an application-based bean which is the connection cache object shared by both sample pages.
  Source
     
ConnCache3.jsp
Connection Cache Sample #3: Similar to Sample #1.
But, this page does not include setupcache.jsp. It creates a session-based connection cache by itself.
  Try it
  Source
     
JDBCQuery.jsp
Search condition JDBC sample
  Try it
  Source
     
SimpleQuery.jsp
A very simple JDBC sample
  Try it
  Source
     
UseHtmlQueryBean.jsp
A JDBC sample that make use of a JavaBean that perform a where-condition search and format the result into HTML.
  Try it
  Source