Create a table on the server without the need for a backing LVConf definition. This can only be published to with a client publisher (ITablePublisher), it will not have any connections to existing tables or applications. It can be stopped with DropTables(array<String>[]()[][]).

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++ 
void CreateTable(
	string tableName,
	string description,
	string schema,
	IList<IList<string>> indices
)
Sub CreateTable ( _
	tableName As String, _
	description As String, _
	schema As String, _
	indices As IList(Of IList(Of String)) _
)
void CreateTable(
	String^ tableName, 
	String^ description, 
	String^ schema, 
	IList<IList<String^>^>^ indices
)

Parameters

tableName
String
description
String
schema
String
Defines the columns in the table.
indices
IList<(Of <(<'IList<(Of <(<'String>)>)>>)>)>
Each index is a list of field names; the first index in the list is the primary key, and the rest are secondary keys.

See Also