Hello,
I noticed problems on the Data Type Web page:
http://www.h2database.com/html/datatypes.html (and the reference PDF)
Geometry: specifies "ARRAY" instead of "GEOMETRY" as an example.
Double: FLOAT4 is listed as a Double, but from DB metadata it looks
like it is a real (which makes sense from the name). Here is a DDL
and the resultung JDBC Meta Data dump: (note ColR5):
CREATE TABLE TAB5 (
ColF1 DOUBLE,
ColF2 DOUBLE PRECISION,
ColF3 FLOAT,
ColF4 FLOAT8,
ColR5 FLOAT4,
ColR6 REAL
);
TABLE TAB5 --
COLF1 DOUBLE (17)
COLF2 DOUBLE (17)
COLF3 DOUBLE (17)
COLF4 DOUBLE (17)
COLR5 REAL (7)
COLR6 REAL (7)
Original issue reported on code.google.com by bernd.eckenfels on 22 Feb 2014 at 11:36
Original issue reported on code.google.com by
bernd.eckenfels
on 22 Feb 2014 at 11:36