ArcObjects Library Reference (GeoDatabase)  

ISQLSyntax.GetSupportedClauses Method

Supported SQL clauses.

[Visual Basic .NET]
Public Function GetSupportedClauses ( _
) As Integer
[C#]
public int GetSupportedClauses (
);
[C++]
HRESULT GetSupportedClauses(
  long* pClauses
);
[C++]

Parameters

pClauses [out, retval]   pClauses is a parameter of type long

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

GetSupportedClauses returns a Long value that indicates which of the esriSQLClauses are supported.

A value of -1 indicates that all clauses are supported by the workspace, while a value of 0 indicates that no clauses are supported by the workspace. Bitwise AND operations can be used with the esriSQLClauses enumeration's values to determine support for individual clauses.

See Also

ISQLSyntax Interface