Click or drag to resize
BCSQueryGetValues Method (IEnumerableString, IEnumerableObject, IEnumerableString, Boolean, IEnumerableString, Array)
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(
	IEnumerable<string> matchColumns,
	IEnumerable<Object> matchValues,
	IEnumerable<string> outColumns,
	bool distinct,
	IEnumerable<string> orderByColumns,
	out Array fieldsInfo
)

Parameters

matchColumns
Type: System.Collections.GenericIEnumerableString
The collection of column names for which values will be searched for a match.
matchValues
Type: System.Collections.GenericIEnumerableObject
The collection of field values to match. The collection size must be the same as the matchColumns collection size.
outColumns
Type: System.Collections.GenericIEnumerableString
The collection of column names for which to return values.
distinct
Type: SystemBoolean
A value indicating whether to return only distinct values.
orderByColumns
Type: System.Collections.GenericIEnumerableString
The collection of column names that specifies the sorting order of returned values.
fieldsInfo
Type: SystemArray
A 2D array that contains the information about returned values (see ADO API http://msdn.microsoft.com/en-us/library/ms678086(VS.85).aspx).

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 outColumns[,...] FROM BaseQuery[ WHERE (matchColumns = matchValues[ AND ...])]
See Also