Click or drag to resize

SQLColumnAttributes.Searchable Property (Typed)

X#
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 
Request Example View Source

Property Value

Type: Long
A 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