Object
a class representing the meta information about an SQLite index
the columns that make up this index, in index order
the name of the index
sqlite sequence number of the index
the sql statement that created the index
the table the index is for
is the index unique
# File lib/amalgalite/index.rb, line 29 def initialize( name, sql, table ) @name = name @sql = sql @table = table @columns = [] @sequence_number = nil @unique = nil end
# File lib/amalgalite/index.rb, line 38 def unique? return @unique end
[Validate]
Generated with the Darkfish Rdoc Generator 2.