SupportedJoinOperators Enum

Definition

Specifies what types of Transact-SQL join statements are supported by the data source.

This enumeration supports a bitwise combination of its member values.

public enum class SupportedJoinOperators
[System.Flags]
public enum SupportedJoinOperators
[<System.Flags>]
type SupportedJoinOperators = 
Public Enum SupportedJoinOperators
Inheritance
SupportedJoinOperators
Attributes

Fields

FullOuter 8

The data source supports full outer joins.

Inner 1

The data source supports inner joins.

LeftOuter 2

The data source supports left outer joins.

None 0

The data source does not support join queries.

RightOuter 4

The data source supports right outer joins.

Remarks

These members are flags that allow a bitwise combination of the join capabilities.

Applies to

See also