Returned whether the given column can be used in a where clause for the specified result set meta data.
Syntax
isSearchable( resultsetmetadata , index )
resultsetmetadata.isSearchable( index )
Parameters
resultsetmetadata
|
the result set meta data object to check.
|
index
|
the index of the column.
|
Returns
boolean
|
true if the column can be specified in a where clause.
false if the column can not be specified in a where clause.
|
Example
if rsmd.isSearchable( 1 ) then
break
end
|