Class Amalgalite::View
In: lib/amalgalite/view.rb
Parent: Object

a class representing the meta information about an SQLite view

Methods

new  

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

[Source]

    # File lib/amalgalite/view.rb, line 20
20:     def initialize( name, sql ) 
21:       @name    = name
22:       @sql     = sql
23:     end

[Validate]