Create database tables and associate them with the contact list.

Namespace: ININ.IceLib.Configuration.Dialer
Assembly: ININ.IceLib.Dialer (in ININ.IceLib.Dialer.dll) Version: 0.0.0.0 (22.3.0.208)

Syntax

C#
public void CreateTables(
	TableType tableMask,
	IEnumerable<DBColumn> customColumns
)
Visual Basic
Public Sub CreateTables ( _
	tableMask As TableType, _
	customColumns As IEnumerable(Of DBColumn) _
)

Parameters

tableMask
Type: ININ.IceLib.Configuration.Dialer..::..TableType
A bitmask of TableTypes specifying which tables to create.
customColumns
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'DBColumn>)>)>
Custom columns to include in the contact list table, or null if not applicable.

Remarks

The name of the contact list table determines the name of the associated tables. If the contact list table does not exist yet, the name of the contact list object is used.

See Also