Click or drag to resize
BCSQueryGetValues Method (String, Object)
Returns the values of the search result.

Namespace: BlueCieloECM.InnoCielo.Meridian.Scripting
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.19.0)
Syntax
public Array GetValues(
	string matchColumn,
	Object matchValue
)

Parameters

matchColumn
Type: SystemString
The column name for which values will be searched for a match.
matchValue
Type: SystemObject
The field value to match.

Return Value

Type: Array
A 2D array of values ([column, row]) that represents the search result. If no results, an empty array.
Remarks
Executes a query like: SELECT * FROM BaseQuery WHERE matchColumn = matchValue
See Also