Class RightOuterJoin
Class that implements the Right Outer Join clause of a sql query.
Implements
Inherited Members
Namespace: SuperOffice .Data.SQL
Assembly: SoDataBase.dll
Syntax
public sealed class RightOuterJoin : JoinCompare, ICloneable
Constructors
RightOuterJoin(Equal)
Default constructor 1. Takes one kind of in-parameter. Used when you're only dealing with an equal( field = field ) in the join-clause.
Declaration
public RightOuterJoin(Equal comp)
Parameters
Type | Name | Description |
---|---|---|
Equal | comp |
RightOuterJoin(Equal, Restriction)
Default constructor no 2. Takes two different in-parameters. Used when you're dealing with both an equal ( field = field ) and an restriction ( field = 2 ) in the join-clause.
Declaration
public RightOuterJoin(Equal comp, Restriction res)
Parameters
Type | Name | Description |
---|---|---|
Equal | comp | The Compare-parameter. |
Restriction | res | The Restriction-parameter, nulls are now allowed |
Methods
Clone()
Clone the join.
Declaration
public override object Clone()
Returns
Type | Description |
---|---|
object | Copy of the join node |
Overrides
ToString()
String output.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | RIGHT OUTER JOIN (a) ON (b) |