CoreDb.SetFilter Method |  |
Set a filter condition.
Namespace:
XSharp
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.17
Syntax STATIC METHOD SetFilter(
oBlock AS ICodeblock,
cFilter AS STRING
) AS LOGIC
public static bool SetFilter(
ICodeblock oBlock,
string cFilter
)
Request Example
View SourceParameters
- oBlock
- Type: ICodeblock
Codeblock that defines the filter. Please note that some RDDs (such as Advangate) will NOT use this compiled codeblock. - cFilter
- Type: String
String version of the filter. Some RDDs (such as Advantage) use this condition instead of the codeblock
Return Value
Type:
LogicTRUE if successful; otherwise, FALSE.
RemarksThis function is like DBSetFilter() but strongly typed.
This function, however, does not call the error
handler and will therefore not produce a runtime error message or create an error object if it fails.
Therefore it is important to check the return value to determine if the function succeeded.
The LastRddError property in the runtimestate
will contain needed information about any error that occurs.
See Also