Create a QueryConfig with the given query table. The resulting QueryString will be 'select * from <table>' and the query will be a simple snapshot.

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 static QueryConfig CreateQueryConfig(
	string table
)
Public Shared Function CreateQueryConfig ( _
	table As String _
) As QueryConfig
public:
static QueryConfig^ CreateQueryConfig(
	String^ table
)

Parameters

table
String
The name of the table to query.

Return Value

See Also