class Sequel::SQL::JoinOnClause

  1. lib/sequel/sql.rb
Superclass: JoinClause

Represents an SQL JOIN clause with ON conditions.

Methods

Public Class

  1. new

Public Instance

  1. on

Attributes

on [R]

The conditions for the join

Public Class methods

new(on, *args)

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

[show source]
     # File lib/sequel/sql.rb
1580 def initialize(on, *args)
1581   @on = on
1582   super(*args)
1583 end