mysql - mikeshimura/dbflute GitHub Wiki
Mysqlの項目対応表
下記以外は現時点では未対応です。
データベース項目 | Not Null | Null |
---|---|---|
INT | int64 | sql.NullInt64 |
BIGINT | int64 | sql.NullInt64 |
MEDIUMINT | int64 | sql.NullInt64 |
SMALLINT | int64 | sql.NullInt64 |
TINYINT | int64 | sql.NullInt64 |
FLOAT | float64 | sql.NullFloat64 |
DOUBLE | float64 | sql.NullFloat64 |
DATE | df.MysqlDate | df.MysqlNullDate |
DATETIME | df.MysqlTimestamp | df.MysqlNullTimestamp |
TIMESTAMP | df.MysqlTimestamp | df.MysqlNullTimestamp |
TIME | df.MysqlTime | df.MysqlNullTime |
TINYTEXT | string | sql.NullString |
TEXT | string | sql.NullString |
DECIMAL | df.Numeric | df.NullNumeric |
MEDIUMTEXT | string | sql.NullString |
LONGTEXT | string | sql.NullString |
CHAR | string | sql.NullString |
VARCHAR | string | sql.NullString |
BINARY | []byte | []byte |
VARBINARY | []byte | []byte |
BLOB | []byte | []byte |
TINYBLOB | []byte | []byte |
MEDIUMBLOB | []byte | []byte |
LONGBLOB | []byte | []byte |