java类型 jdbcType类型 mysql类型关系
程序员文章站
2022-06-22 21:14:15
java类型 jdbcType类型 mysql类型关系 Java类型 JdbcType Mysql类型 备注 String String int INTEGER Int 4字节 Date TIMESTAMP DateTime 日期类型 boolean BOOLEAN long BIGINT BIGI ......
java类型 jdbctype类型 mysql类型关系
java类型 |
jdbctype |
mysql类型 |
备注 |
string |
varchar |
varchar |
变长字符串 |
string |
longvarchar |
longtext |
|
int |
integer |
int |
4字节 |
date |
timestamp |
datetime |
日期类型 |
boolean |
boolean |
bit |
布尔类型 |
long |
bigint |
bigint |
8字节 |
byte |
tinyint |
tinyint |
1字节 |
short |
smallint |
smallint |
2字节 |
double |
double |
double |
8字节 |
bigdecimal |
decimal |
decimal |
高精度浮点数 |