1. 程式人生 > >postgresql+java資料型別對照

postgresql+java資料型別對照

網上搜了很多都不理想,這裡總結的一部分是官網的文件,一部分是網上的,大體沒問題

PostgreSQL™                 Java SE 8

date            LocalDate

time            LocalTime

timestamp  without timezone  LocalDateTime

timestamp with timezone       OffsetDateTime

 

varchar       String 

text             String 

int2             Integer

int4             Integer

int8             Long

float4          Float

float8          Double

numeric      BigDecimal

bool            Boolean