<sasads:DataSet>

The DataSet Custom Tag allows the user to access information from a SAS data set within a JSP page.

Syntax

<sasads:DataSet
   [columnInfoUsed="NAME|LENGTH|TYPE|LABEL|FORMAT|INFORMAT"]
   [connection="java.lang.String"]
   [connectionObject="com.sas.rmi.Connection"]
   [dataSet="java.lang.String"]
   [displayedColumnsArray="java.lang.String"]
   [displayedColumns="java.lang.String"]
   [entry="java.lang.String"]
   [id="value"]
   [indexColumn="int"]
   [instantiate="true|false"]
   [levelColumn="int"]
   [locale="java.util.Locale"]
   [readOnly="true|false"]
   [ref="java.lang.String"]
   [rootText="java.lang.String"]
   [scope="java.lang.String"]
   [source="java.lang.String"]
   [textColumn="int"]
   [where="java.lang.String"] />

Attributes

columnInfoUsedSets the column information to be returned as the column label
connection
connectionObject
dataSetSets the dataset to bind this interface to
displayedColumnsArraySets which columns in the model are displayed, or returned to the user
displayedColumnsA String indicating which columns to be returned. Each column specified should be separated by a space.
entrySets the name of the dataform entry associated with the model
idCase-sensitive name used to identify the object instance.
indexColumnSets the index column index in the dataset
instantiate
levelColumnSets the level column index in the dataset
locale
readOnlySets the dataset to read only or editable
ref
rootTextSets the root node text that will be used when the DataSetInterface is the model for a tree
scope
sourceSets the name of the SCL source entry associated with the model
textColumnSets the text column index in the dataset
whereSets the where clause to apply to the dataset

More Information

To view the documentation for the related InformationBean, see com.sas.sasserver.dataset.DataSetInterface.

If you need to subclass the tag handler class for the sasads:DataSet tag, extend com.sas.taglib.sasserver.dataset.DataSetTag.