struct MySql::ColumnSpec
- MySql::ColumnSpec
- Struct
- Value
- Object
Defined in:
mysql.cr:5mysql.cr:7
Constructors
Instance Method Summary
- #catalog : String
- #character_set : UInt16
- #clone
- #column_length : UInt32
- #column_type
- #column_type_code : UInt8
- #copy_with(catalog _catalog = @catalog, schema _schema = @schema, table _table = @table, org_table _org_table = @org_table, name _name = @name, org_name _org_name = @org_name, character_set _character_set = @character_set, column_length _column_length = @column_length, column_type_code _column_type_code = @column_type_code, flags _flags = @flags, decimal _decimal = @decimal)
- #decimal : UInt8
- #flags : UInt16
- #name : String
- #org_name : String
- #org_table : String
- #schema : String
- #table : String
Constructor Detail
def self.new(catalog : String, schema : String, table : String, org_table : String, name : String, org_name : String, character_set : UInt16, column_length : UInt32, column_type_code : UInt8, flags : UInt16, decimal : UInt8)
#
Instance Method Detail
def copy_with(catalog _catalog = @catalog, schema _schema = @schema, table _table = @table, org_table _org_table = @org_table, name _name = @name, org_name _org_name = @org_name, character_set _character_set = @character_set, column_length _column_length = @column_length, column_type_code _column_type_code = @column_type_code, flags _flags = @flags, decimal _decimal = @decimal)
#