SQLColumnAttributes.Searchable Property (Typed) | |
A constant (four standard values) representing how the column can be used in searches:
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOSQLClasses (in XSharp.VOSQLClasses.dll) Version: 2.19
Syntax VIRTUAL PROPERTY Searchable AS LONG GET SET
public virtual int Searchable { get; set; }
Request Example
View SourceProperty Value
Type:
LongA constant (four standard values) representing how the column can be used in searches:
Remarks
One of the following constants (four standard values) representing how the column can be used in searches:
Constant Meaning
SQL_ALL_EXCEPT_LIKE The column can be used in a WHERE clause with all comparison operators except LIKE.
SQL_LIKE_ONLY The column can be used in a WHERE clause only with the LIKE predicate.
SQL_SEARCHABLE The column can be used in a WHERE clause with any comparison operator.
SQL_UNSEARCHABLE The column cannot be used in a WHERE clause.
See Also