BCSTable AddValues Method (IEnumerable String , IEnumerable Object )Meridian Enterprise 2013 Developer's Guide | BlueCielo ECM Solutions
Adds a row to the table.

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

public void AddValues(
	IEnumerable<string> columns,
	IEnumerable<Object> values
)

Parameters

columns
Type: OnlineSystem.Collections.Generic IEnumerable OnlineString 
The collection of column names of which to add the values.
values
Type: OnlineSystem.Collections.Generic IEnumerable OnlineObject 
The collection of values to add.
Remarks

Executes a query like: INSERT INTO TableName[ (column[,...])][ VALUES(value[,...n])]
See Also