Home > Contents > Index >
EXECSQL
Executes an inline SQL statement.
Syntax
<EXECSQL SQL="SQL_COMMAND
" LIST="LIST_NAME
" [LIMIT="MAX_NO_RESULTS
"] [TABLE="table name"] />Parameters
SQL (required)
- SQL commands to execute.
LIST (required)
- Name of list to contain resultset.
LIMIT (optional)
- Maximum number of rows to be retrieved. If LIMIT is omitted or if the LIMIT value is set to less than or equal to 0, all records from the SQL command are returned.
TABLE (optional)
- A comma-separated list of table to cache or synchronize against.
Description
The
EXECSQL
tag executes an inline SQL statement. Because the SQL statement is inline and not from theSystemSQL
table, you must set the variabletablename
before the call; otherwise, an error can occur. Furthermore,tablename
must exist in the database prior to callingEXECSQL
. The resultset is cached against the table indicated by the value oftablename
.
Note
If the limit is less than or equal to 0, then no limit exists and the entire recordset is returned.
This tag supports multiple table caching. You provide a comma-separated list of tables via the TABLE parameter. The first table is the "primary" table, that is, the resultset is cached based on that table's caching rules.
Error Numbers
The possible values of
errno
include:
Value Description -101 No rows found. -102 Empty column. -103 No such table. -104 No table definition. -106 Bad parameterExample
This example selects
headline
from the table FTX1EE17FWB:<SETVAR NAME="tablename" VALUE="NewPortalArticle"/> <EXECSQL LIST="articles" SQL="select headline from Variables.tablename where id='FTX1EE17FWB'"/> <CSVAR NAME="articles.headline"/>See Also
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.