https://bugs.freedesktop.org/show_bug.cgi?id=88631
--- Comment #7 from Lionel Elie Mamane <[email protected]> --- (In reply to Alex Thurgood from comment #5) > If I set the connection string with that parameter set to false, reload the > tables, I get the following error when trying to read a table with the value > of 244 : > > SQL Status: 22003 > > '244' in column '1' is outside valid range for the datatype TINYINT. JDBC has no way to express an unsigned column (that concept does not exist in Java, and does not exist in the SQL standard), so it is presented by the JDBC driver as a *signed* tinyint column, whose valid values are -128 to +127. FYI, you can use TINYINT columns as integers without unsetting tinyInt1isBit by using TINYINT(4) instead of TINYINT(1). -- You are receiving this mail because: You are the assignee for the bug.
_______________________________________________ Libreoffice-bugs mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs
