BCSQueryGetValues Method (String, Object, String) |
Returns 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.111.0)
Syntax public Array GetValues(
string matchColumn,
Object matchValue,
string outColumn
)
Public Function GetValues (
matchColumn As String,
matchValue As Object,
outColumn As String
) As Array
Parameters
- matchColumn
- Type: SystemString
The column name for which values will be searched for a match.
- matchValue
- Type: SystemObject
The field value to match.
- outColumn
- Type: SystemString
The column name for which to return the values.
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 outColumn FROM BaseQuery WHERE matchColumn = matchValue
See Also