advertisement
javaboutique
Search Tips
Articles  |   Tutorials  |   Reviews  |   Tools  |   by Category  |   by Date  |   by Name  |   Submit  |   Source  |   Forums  |  
javaboutique
Browse DevX


Partners & Affiliates











advertisement

Tutorials : Accessing a Database with the JSTL 1.1 SQL Tag Library :

Updating a Database Table

Follow these steps to update a database table row:
  1. As in the previous section, you need to add the taglib directives for the JSTL SQL tag library and the JSTL Core tag library.
  2. Set the datasource for the JSP page with the setDataSource tag.
  3. Add a sql:update tag to run a UPDATE SQL statement. Add the UPDATE SQL statement in the sql attribute of the sql:update tag.
    
                  <sql:update  sql="UPDATE CATALOG SET Title=?,  Author=? 
                     WHERE CatalogId=?">
    
                   </sql:update>
    
    The SQL statement has placeholders for specifying IN parameters for the UPDATE statement.
  4. Specify the values for the IN parameters in the SQL statementwith the sql:param tags. Title, Author, and CatalogId are IN parameters in the UPDATE statement. Set a parameter value with the value attribute in the sql:param tag.
    
    <sql:param value="Hibernate:The Definitive Guide"/>
    <sql:param value="Elliott, James"/>
    <sql:param value="catalog2"/>
    
    The catalogUpdate.jsp is listed in Listing 2.

To run catalogUpdate.jsp, copy it to the <weblogic91>\samples\server\examples\build\mainWebApp directory and access it with the URL http://localhost:7001/catalogUpdate.jsp. Now the table is updated.

Querying a Database Table

Now you'll see how to query the database table and display the results in an HTML table.
  1. Create a JSP, catalogQuey.jsp.
  2. As in the previous sections, add taglib directives for the JSTL, SQL, and JSTL Core tag libraries.
  3. Also add a setDataSource tag for obtaining a connection with the MySQL database.
  4. Add a sql:query tag to query the database.
  5. In the sql:query tag specify the var attribute, which is a required attribute. The var attribute is returned by the Query tag. Specify the SQL query in the sql attribute.

    This adds the sql:query tag to the JSP page.

    
    <sql:query   var="catalog" sql="SELECT * FROM CATALOG">
    </sql:query>
    
  6. Add a <table> to display the result set of the Query tag. Add the table headers. A row shall be added corresponding to each row in the result set. Add the JSTL 1.1 Core tag c:forEach to the <table> element.The var attribute of the c:forEach tag specifies the variable corresponding to a row in the result set. The items attribute specifies the EL binding to iterate over the rows in the result set returned by the Query tag. The c:forEach tag in the catalogQuery.jsp JSP is:
    
    <c:forEach var="journal" items="${catalog.rows}">
    
    </c:forEach>
    
  7. Output the values corresponding to each column in a row to the JSP table. The JSP table values are added with the c:out tag. Add a c:out tag for each column. Specify the EL expression to bind a column value in the value attribute. The journal is the variable corresponding to a row in the result set. You obtain the column values binding with the column names in the result set. For example, the EL expression to bind the CatalogId column is ${journal.CatalogId}.
    
    <tr>
    <td><c:out value="${journal.CatalogId}"/></td>
    </tr>
    
  8. Similarly add c:out tags for the other columns in the result set. The catalogQuery.jsp is shown in Listing 3.
To run catalogQuery.jsp, copy it to the C:\BEA\weblogic91\samples\server\examples\build\mainWebApp directory and access it with the URL http://localhost:7001/catalogQuery.jsp. Now, the result set you obtained with the Query tag is displayed in a HTML table.


Good for Simple Applications

JSTL's SQL tags are suited for prototyping and simple applications. For complex applications, the Model-View-Controller pattern is recommended.

Home / Articles / Accessing a Database with the JSTL 1.1 SQL Tag Library / 1 / 2 / 3 /

How to Add Java Applets to Your Site

New on the Java Boutique:

New Review:

Time Management Made Easy with the Quartz Enterprise Job Scheduler
Why not just use the Java timer API? This open source scheduling API boasts simplicity, ease-of-integration, a well-rounded feature set, and it's free!

New Applet:

Reverse Complement
Reverse Complement is a simple applet that converts DNA or RNA sequences into three useful formats.

Elsewhere on internet.com:

WebDeveloper Java
Lots of Java information on webdeveloper.com

WDVL Java
Thorough Java resource at the Web Developer's Virtual Library.

ScriptSearch Java
Hundreds of free Java code files to download.

jGuru: Your View of the Java Universe
Customizable portal with online training, FAQs, regular news updates, and tutorials.

 Internet.com eBook Library
 IBM Software Construction Toolbox
 Microsoft RIA Development Center
 Destination .NET
XML error: not well-formed (invalid token) at line 38
advertisement
Receive Articles via our XML/RSS feed
Receive Articles via our XML/RSS feed

JavaBytes
Internet Cyclone
This powerful, easy-to-use, internet optimizer is for Windows 95, 98, ME, NT, 2000 and XP. It's designed to automatically optimize your Windows settings, boosting your Internet connection up to 200%.

Mozilla's Ubquity Mashup: For The Masses?
iPhone Users Just Want to Have Fun
Oops! I Fixed the Linux Kernel
Jim Zemlin: The New Center of Linux Gravity
Microsoft's Novell Investment Tops $340M
Fedora 10 Takes Shape
IBM Gives a Mobile Voice to Developers
Inadequate Tools Send Software Down the Drain
USB 3.0 One Step Closer to Reality
Would-Be Linux Contributors May Get a Leg Up

Develop a Mobile RSS Feed the Easy Way
State of the Semantic Web: Know Where to Look
A 3D Exploration of the HTML Canvas Element
Setting Up and Running Subversion and Tortoise SVN with Visual Studio and .NET
Java/JRuby Developers, Say Open 'Sesame' to the Semantic Web
Interpreting Images with MRDS Services
DevXtra Editors' Blog: Executives Avoiding Cloud Computing in Droves
Q&A with James Reinders on the Intel Parallel Studio Beta Program
The Pros and Cons of Outsourcing Enterprise Emails
Hosting Options: Shared or Dedicated Server

Advertising Info  |   Member Services  |   Contact Us  |   Help  |   Feedback  |   Site Map  |   Network Map  |   About



JupiterOnlineMedia

internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and JupiterOnlineMedia

Jupitermedia Corporate Info


Legal Notices, Licensing, Reprints, & Permissions, Privacy Policy.

Advertise | Newsletters | Tech Jobs | Shopping | E-mail Offers