You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given all the shortcuts taken in this driver wrt type-safety, one has to conclude the implementers don't consider type-safety a worthwhile aspect. If that is the case, please let me know so I can account for that in my project (and stop filing issues here). Thanks.
The text was updated successfully, but these errors were encountered:
This issue is a JDBC issue, where types are meaningful. I fully understand SQLite’s loose type system. This issue is about complying with JDBC where table column metadata must agree with query column metadata. Otherwise, your current driver implementation is useless to code generators.
A Java class generated from a table based on metadata obtained from your driver would result in accessors returning strings and integers for columns typed as DATE, TIMESTAMP, TIME, etc. does that sound right to you?
The result returned from
DatabaseMetadata#getTypeInfo()
is a very small (useless) subset of the SQL types sqlite provides.The text was updated successfully, but these errors were encountered: