Class Sequel::SQL::JoinOnClause
In: lib/sequel/sql.rb
Parent: JoinClause

Represents an SQL JOIN table ON conditions clause.

Methods

new  

Attributes

on  [R]  The conditions for the join

Public Class methods

Create an object with the ON conditions and call super with the remaining args.

[Source]

     # File lib/sequel/sql.rb, line 625
625:       def initialize(on, *args)
626:         @on = on
627:         super(*args)
628:       end

[Validate]