Click or drag to resize

DatabaseDBExists 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
public bool DBExists(
	string table,
	string where
)

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: Boolean
True if one or more matching records exists, else False.

Implements

IDatabaseDBExists(String, String)
See Also