Enumerates the query languages that are supported by a table.
            
Namespace: StreamBase.LiveView.APIAssembly: StreamBase.LiveView.API (in StreamBase.LiveView.API.dll) Version: 10.4.4.0 (10.4.4.0)
Syntax
| C# | Visual Basic | Visual C++ | 
public enum LiveViewQueryLanguage
Public Enumeration LiveViewQueryLanguage
public enum class LiveViewQueryLanguage
Members
| Member | Value | Description | 
|---|---|---|
| LIVEVIEW | 0 | 
            The default LiveView query language, using the StreamBase expression language
            and some LiveView specific operators.
              | 
| SQL | 1 | 
            In general, this refers to standard SQL. Specifically in the context of LiveView,
            this means a SQL compatible with the target SQL database being queried. LiveView
            will do a simple pass-through to the underlying database, with no translation of SQL variants.
              | 
| ACTIVE_SPACES | 2 | 
            The Active Spaces query language, which is a subset of SQL or LiveView.
              | 
| OTHER | 3 | 
            This is some language other than the basic LiveView language or SQL. There is no autocomplete help for this language.
              |