class Amalgalite::View

a class representing the meta information about an SQLite view

Attributes

name[R]

the table name

schema[RW]

the schame this view is assciated with

sql[R]

the original sql that was used to create this table

Public Class Methods

new( name, sql ) click to toggle source
# File lib/amalgalite/view.rb, line 20
def initialize( name, sql ) 
  @name    = name
  @sql     = sql
end