Enumerates the query languages that are supported by a table.

Namespace: StreamBase.LiveView.API
Assembly: StreamBase.LiveView.API (in StreamBase.LiveView.API.dll) Version: 2.2.8.5956 (2.2.8.5956)

Syntax

         
 C#  Visual Basic  Visual C++ 
public enum LiveViewQueryLanguage
Public Enumeration LiveViewQueryLanguage
public enum class LiveViewQueryLanguage

Members

MemberValueDescription
LIVEVIEW0
The default LiveView query language, using the StreamBase expression language and some LiveView specific operators.
SQL1
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_SPACES2
The Active Spaces query language, which is a subset of SQL or LiveView.
OTHER3
This is some language other than the basic LiveView language or SQL. There is no autocomplete help for this language.

See Also