Click or drag to resize

BCSTableAddValues Method (IEnumerableString, IEnumerableObject)

Adds a row to the table.

Namespace:  BlueCieloECM.InnoCielo.Meridian.Scripting
Assembly:  BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.111.0)
Syntax
public void AddValues(
	IEnumerable<string> columns,
	IEnumerable<Object> values
)

Parameters

columns
Type: System.Collections.GenericIEnumerableString
The collection of column names of which to add the values.
values
Type: System.Collections.GenericIEnumerableObject
The collection of values to add.
Remarks
Executes a query like: INSERT INTO TableName[ (column[,...])][ VALUES(value[,...n])]
See Also