-
Notifications
You must be signed in to change notification settings - Fork 0
postgres
Masanobu Shimura edited this page May 14, 2015
·
5 revisions
下記以外は現時点では未対応です。
| データベース項目 | Not Null | Null |
|---|---|---|
| int | int64 | sql.NullInt64 |
| int1 | int64 | sql.NullInt64 |
| int2 | int64 | sql.NullInt64 |
| int4 | int64 | sql.NullInt64 |
| int8 | int64 | sql.NullInt64 |
| serial | int64 | sql.NullInt64 |
| bigserial | int64 | sql.NullInt64 |
| float4 | float64 | sql.NullFloat64 |
| float8 | float64 | sql.NullFloat64 |
| numeric | df.Numeric | df.NullNumeric |
| money | df.Numeric | df.NullNumeric |
| bool | bool | sql.NullBool |
| varchar | string | sql.NullString |
| char | string | sql.NullString |
| text | string | sql.NullString |
| bpchar | string | sql.NullString |
| date | df.Date | df.NullDate |
| datetz | df.Date | df.NullDate |
| time | time.Time | pq.NullTime |
| timetz | time.Time | pq.NullTime |
| timestamp | df.Timestamp | df.NullTimestamp |
| timestamptz | df.Timestamp | df.NullTimestamp |
| bytea | []byte | []byte |