First of all Table.insert supports only Numeric au...
# exposed
t
First of all Table.insert supports only Numeric auto-increment columns, because there is no required type information in Table class. There is
insertAndGetId
function on IdTable, but it wont help either. Main problem is that insert gets id from
PreparedStatement.getGeneratedKeys
(which doesn’t return client generated values) and only with auto-increment columns.