sqlserver - mikeshimura/dbflute GitHub Wiki
SqlServerの項目対応表
下記以外は現時点では未対応です。
データベース項目 | Not Null | Null |
---|---|---|
bigint | int64 | sql.NullInt64 |
int | int64 | sql.NullInt64 |
smallint | int64 | sql.NullInt64 |
tinyint | int64 | sql.NullInt64 |
float | float64 | sql.NullFloat64 |
real | float64 | sql.NullFloat64 |
money | df.Numeric | df.NullNumeric |
smallmoney | df.Numeric | df.NullNumeric |
decimal | df.Numeric | df.NullNumeric |
numeric | df.Numeric | df.NullNumeric |
date | df.Date | df.NullDate |
datetime | df.Timestamp | df.NullTimestamp |
datetime2 | df.Timestamp | df.NullTimestamp |
datetimeoffset | df.Timestamp | df.NullTimestamp |
time | time.Time | pq.NullTime |
timestamp | []byte | []byte |
char | string | sql.NullString |
varchar | string | sql.NullString |
nchar | string | sql.NullString |
nvarchar | string | sql.NullString |
text | string | sql.NullString |
ntext | string | sql.NullString |
binary | []byte | []byte |
varbinary | []byte | []byte |