Using a Preconfigured DataSource : Database : JSP : Java examples (example source code) Organized by topic

Java
C++
PHP
Java Home »  JSP   » [  Database  ]  Screenshots 
 



Using a Preconfigured DataSource


//web.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
  "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
  <resource-ref>
    <res-ref-name>jdbc/address</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
  </resource-ref>
</web-app>


<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<html>
<head>
<title>Using a Preconfigured DataSource</title>
</head>
<body>
<h1>Address List</h1>

<sql:query dataSource="jdbc/address" var="addresses">
    SELECT * FROM AddressList
</sql:query>
<table width="90%" border="1">
<tr>
<!-- add the table column headings -->
<c:forEach var="columnName" items="${addresses.columnNames}">
  <th> <c:out value="${columnName}"/> </th>
</c:forEach>
</tr>
<!-- add the table rows from the result set -->
<c:forEach var="row" items="${addresses.rowsByIndex}">
  <tr>
    <c:forEach var="column" items="${row}">
      <td><c:out value="${column}"/></td>
    </c:forEach>
  </tr>
</c:forEach>
</table>
</body>
</html>


           
       
Related examples in the same category
1.  JSP Database DemoHas Download File
2.  JSP Database QueryHas Download File
3.  A First JSP DatabaseHas Download File
4.  Navigating in a Database Table
5.  Joining Tables
6.  Filling a Table
7.  Display table in Database
8.  Selecting records with condition From a Database
9.  Navigating in a Database Table 2
10.  Using Table Metadata
11.  Creating a Table
12.  Accessing the table field in Database
13.  Fetching Data From a Database
14.  JSTL: Transaction with a JSP
15.  Using a Result object
16.  Calling a Stored procedure within a JSP
17.  Presenting database content using tags
18.  Obtaining a Connection in JSP
19.  Presenting database content
20.  Using a DataSource
21.  Using Transactions
22.  Updating a database using the sql:update tag
23.  Using the SortedMap
24.  New Address Creation using executeUpdate
25.  Obtaining a database Connection
26.  JSP Access to DatabasesHas Download File
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.