Sha256: 4d91fa7879237c5e208592a2853aa91141831cb8fab48c7b0d505899b3ec0963
Contents?: true
Size: 514 Bytes
Versions: 96
Compression:
Stored size: 514 Bytes
Contents
#-- # Copyright (c) 2008 Jeremy Hinegardner # All rights reserved. See LICENSE and/or COPYING for details. #++ module Amalgalite # # a class representing the meta information about an SQLite view # class View # the schame this view is assciated with attr_accessor :schema # the table name attr_reader :name # the original sql that was used to create this table attr_reader :sql def initialize( name, sql ) @name = name @sql = sql end end end
Version data entries
96 entries across 96 versions & 2 rubygems