-
-
Notifications
You must be signed in to change notification settings - Fork 137
MySQL Types
Ohad Shai edited this page Mar 20, 2019
·
6 revisions
When you are receiving data from a ResultSet
:
MySQL type | Java type |
---|---|
date | LocalDate |
datetime | LocalDateTime |
new_date | LocalDate |
timestamp | LocalDateTime |
tinyint | Byte |
smallint | Short |
year | Short |
float | Float |
double | Double |
int24 | Int |
mediumint | Int |
bigint | Long |
numeric | BigDecimal |
new_decimal | BigDecimal |
decimal | BigDecimal |
string | String |
var_string | String |
varchar | String |
time | java.util.Duration |
text | String |
JSON | String |
enum | String |
blob | ByteArray |
Now when you're setting parameters for a prepared statement:
Java type | MySQL type |
---|---|
Byte | tinyint |
Short | smallint |
Int | mediumint |
Float | float |
Double | double |
BigDecimal | decimal |
LocalDate | date |
DateTime | timestamp |
java.util.Duration | time |
java.sql.Date | date |
java.util.Date | timestamp |
java.sql.Timestamp | timestamp |
java.sql.Time | time |
String | string |
ByteArray | blob |
java.nio.ByteBuffer | blob |
io.netty.buffer.ByteBuf | blob |
-
The maximum size of a blob is 2^24-9 bytes (almost 16 MiB).
-
You don't have to match exact values when sending parameters for your prepared statements, MySQL is usually smart enough to understand that if you have sent an Int to
smallint
column it has to truncate the 4 bytes into 2. -
null
values are supported, In prepared statement passnull
.
-
unsigned
types are not supported, their behaviour when using this driver is undefined. - Prior to version 5.6.4 MySQL truncates millis in
datetime
,timestamp
andtime
fields. If your date has millis, they will be gone (docs here) - If using
5.6
support for microseconds ontimestamp
fields (using thetimestamp(3)
syntax) you can't go longer than 3 in precision sinceJodaTime
andDate
objects in Java only go as far as millis and not micro. Fortime
fields, sinceDuration
is used, you get full microsecond precision. - Timezone support is rather complicated (see here),
avoid using timezones in MySQL. This driver just stores the dates as they are and won't perform any computation
or calculation. I'd recommend using only
datetime
fields and avoidtimestamp
fields as much as possible. -
time
in MySQL is not exactly a time in hours, minutes, seconds. It's a period/duration and it can be expressed in days too (you could, for instance, say that a time is -120d 19:27:30.000 001). As much as this does not make much sense, that is how it was implemented at the database and as a driver we need to stay true to it, so, while you can sendjava.sql.Time
andLocalTime
objects to the database, when reading these values you will always receive ascala.concurrent.Duration
object since it is the closest thing we have to what atime
value in MySQL means. - MySQL can store dates with values like
0000-00-00
or0000-00-00 00:00:00
but it's not possible to represent dates like this in Java (nor there would actually be a date with a zero day or month, this is just MySQL being lenient on invalid dates) so the driver just returnsnull
for any case like that.