JSTL Early Access Beware — API and Tags may/will change support   development   comments to JSR052 EG
JSTL Examples     IntroductionEL Support ConditionalsIteratorsImportI18N & FormattingXMLSQLEcmaScriptMisc.

SQL Tags Examples

These examples create their own table for demonstration purposes. Every database supports table creation in a slightly different way. For instance, different databases have different types and constraints. The simplest possible table was chosen, however it may still not be supported by your particular database. Check your database documentation or administrator if you have problems creating the table and modify the examples acordingly. Here is the table used in the examples:


    create table mytable (
      nameid int primary key,
      name varchar(80)
    )

Enter your Driver Name and DataBase URL to test the Database Tag Library. NOTE: You will need to have the DataBase Driver classes available in your server's CLASSPATH at startup.

Driver
URL


NOTE: You can access the tags directly here to look at the source. If you do not provide a valid Driver and URL using the above form the tags NOT run properly.

<%@ include file="links.html" %>
JSTL Early Access Beware — API and Tags may/will change support    development   comments to JSR052 EG