BCSQueryGetValues Method (IEnumerableString, IEnumerableObject, IEnumerableString, Boolean, IEnumerableString, Array) |
Returns the values of the search result.
Namespace: BlueCieloECM.InnoCielo.Meridian.ScriptingAssembly: 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
)
Public Function GetValues (
matchColumns As IEnumerable(Of String),
matchValues As IEnumerable(Of Object),
outColumns As IEnumerable(Of String),
distinct As Boolean,
orderByColumns As IEnumerable(Of String),
<OutAttribute> ByRef fieldsInfo As Array
) As Array
public:
Array^ GetValues(
IEnumerable<String^>^ matchColumns,
IEnumerable<Object^>^ matchValues,
IEnumerable<String^>^ outColumns,
bool distinct,
IEnumerable<String^>^ orderByColumns,
[OutAttribute] Array^% fieldsInfo
)
member GetValues :
matchColumns : IEnumerable<string> *
matchValues : IEnumerable<Object> *
outColumns : IEnumerable<string> *
distinct : bool *
orderByColumns : IEnumerable<string> *
fieldsInfo : Array byref -> Array
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