Returns the values of the search result.
Namespace: BlueCieloECM.InnoCielo.Meridian.ScriptingAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)
Syntax
C# |
---|
public Array Select( string selectList, string whereFilter ) |
Visual Basic |
---|
Public Function Select ( _ selectList As String, _ whereFilter As String _ ) As Array |
Visual C++ |
---|
public: Array^ Select( String^ selectList, String^ whereFilter ) |
Parameters
- selectList
- Type: System..::..String
The collection of column names for which to return values. [ALL | DISTINCT][ TOP n [PERCENT ][WITH TIES]][ column_list[, ...] | *]
- whereFilter
- Type: System..::..String
The search condition for the rows returned by the query. For example "(X = '1' AND Y = 3.14) OR Z = trueTruetruetrue (True in Visual Basic)".
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 OutColumns[,...] FROM BaseQuery[ WHERE (whereFilter)].
More info:
- Transact-SQL Reference (Transact-SQL)
http://msdn.microsoft.com/en-us/library/ms189826(SQL.90).aspx