Creates a new table with the specified name.

Namespace: BlueCieloECM.InnoCielo.Meridian.Scripting
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public BCSTable NewTable(
	string name,
	Object[,] columnsInfo
)
Visual Basic
Public Function NewTable ( _
	name As String, _
	columnsInfo As Object(,) _
) As BCSTable
Visual C++
public:
BCSTable^ NewTable(
	String^ name, 
	array<Object^,2>^ columnsInfo
)

Parameters

name
Type: System..::..String
The name of the table to create.
columnsInfo
Type: array<System..::..Object,2>[,](,)[,][,]
An array that specifies the columns in the table (SColumnInfo).

Return Value

The created table.

Remarks

More info: - ADO API Reference http://msdn.microsoft.com/en-us/library/ms678086(VS.85).aspx

See Also