BBJSP SQLTags (Deprecated)
The BBJSP system is deprecated. For new development, use BBxServlet.
Description
In BBj 16.0 and higher, the BBJSP SQL library provides a common set of tags that can be used to access a database within the BBJSP framework.
Creation
Tag libraries need specifically importing into a BBJSP page by using the taglib directive. Here's an example of how to register this tag library in your page:
<%@ taglib uri='/WEB-CFG/tld/sql.tld' prefix='sql' %>
The uri
points to the tag library definition within the web application and the
prefix
defines how the tag will be prefixed in the markup.
Tags
Tag Name |
Description |
---|---|
Param | Passes parameters into an <SQL.Query> tag. |
Query | Executes an SQL query |
Example