Hi there,
I am using SQLite in Java code through Zentus.
I need to map Java long
primitive type in my database. For that I tried to create tables with the following statement: CREATE TABLE MY TABLE (...., LONG time, ...)
.
Insertion into the database through Java with Zentus works perfectly but when retrieving the data, always through Java and Zentus, the LONG value is shrinked to 32 bit value.
I tried to query the database directly with SQlite and it works, thus I guess the problem is the JDBC driver.
Did some of you already experienced such issues, and how did you solved it ?