PostgreSQL
PostgreSQL 8.0 / 8.1 / 8.2 / 8.3
| SQL型 | バーチャルデータ型 |
|---|---|
| character(n) | String |
| character varying(n) | String |
| text | LargeString |
| bigint | Integer |
| bigserial | Integer |
| decimal | Decimal |
| double precision | Decimal |
| integer | Integer |
| numeric | Decimal |
| numeric(n) | Decimal |
| real | Decimal |
| serial | Integer |
| smallint | Integer |
| date | DateTime(※1) |
| time | DateTime(※2) |
| time with time zone | DateTime(※2) |
| timestamp | DateTime |
| timestamp with time zone | DateTime |
| bytea | Binary |
| boolean | (未対応) |
| interval | (未対応) |
| money | (未対応) |
| box | (未対応) |
| circle | (未対応) |
| line | (未対応) |
| lseg | (未対応) |
| path | (未対応) |
| point | (未対応) |
| polygon | (未対応) |
| bit(n) | (未対応) |
| bit varying(n) | (未対応) |
| cidr | (未対応) |
| inet | (未対応) |
| macaddr | (未対応) |
※2 日付部分は「1970-01-01」になります。