# File lib/sequel/adapters/ado/access.rb, line 49 def [](col) @row[col] end
# File lib/sequel/adapters/ado/access.rb, line 53 def allow_null self["IS_NULLABLE"] end
# File lib/sequel/adapters/ado/access.rb, line 61 def db_type t = DATA_TYPE[self["DATA_TYPE"]] if t == "DECIMAL" && precision t + "(#{precision.to_i},#{(scale || 0).to_i})" elsif t == "TEXT" && maximum_length && maximum_length > 0 t + "(#{maximum_length.to_i})" else t end end
# File lib/sequel/adapters/ado/access.rb, line 57 def default self["COLUMN_DEFAULT"] end
# File lib/sequel/adapters/ado/access.rb, line 80 def maximum_length self["CHARACTER_MAXIMUM_LENGTH"] end
Generated with the Darkfish Rdoc Generator 2.