Click or drag to resize

BCSTable.AddValues Method (IEnumerable<String>, IEnumerable<Object>)

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.Generic.IEnumerable<String>
The collection of column names of which to add the values.
values
Type: System.Collections.Generic.IEnumerable<Object>
The collection of values to add.
Remarks
Executes a query like: INSERT INTO TableName[ (column[,...])][ VALUES(value[,...n])]
See Also