Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Not a Bug
-
1.3.3
-
Windows 7, eclipse mars, mariaDB 10.1
Description
In version 1.3.2 the handling of reading DOUBLE values with ResultSet.getString() has broken in version 1.3.3. The return value from the getString()-method is now change, so the Long.parseLong() throwing a NumberFormatException.
// 1449576922917
String value = queryResult.getString("index");
Long.parseLong(value)
//"1.449576736113E12"
String value = queryResult.getString("index");
Long.parseLong(value)