IDatabaseDBExists Method (String, String) |
Determines if a particular record exists.
For better performance and clarity, use this instead of
DBCount(String, String, String) to
determine if a record or records exist.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax bool DBExists(
string table,
string where
)
Function DBExists (
table As String,
where As String
) As Boolean
Parameters
- table
- Type: SystemString
The table in which to query. - where
- Type: SystemString
The WHERE clause (without the WHERE) identifing item(s) of interest.
Return Value
Type:
BooleanTrue if one or more matching records exists, else False.
See Also