Returns values of the search result.

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

Syntax

C#
public Array GetValues(
	string matchColumn,
	Object matchValue,
	string outColumn
)
Visual Basic
Public Function GetValues ( _
	matchColumn As String, _
	matchValue As Object, _
	outColumn As String _
) As Array
Visual C++
public:
Array^ GetValues(
	String^ matchColumn, 
	Object^ matchValue, 
	String^ outColumn
)

Parameters

matchColumn
Type: System..::..String
The column name for which values will be searched for a match.
matchValue
Type: System..::..Object
The field value to match.
outColumn
Type: System..::..String
The column name for which to return the values.

Return Value

A 2D array of values ([column, row]) that represents the search result. If no results, an empty array.

Remarks

Executes a query like: SELECT outColumn FROM BaseQuery WHERE matchColumn = matchValue

See Also