Quote Originally Posted by Nouyana View Post
Can anyone explain me how to save and restore a Double value in a SQLite database without loss?
Use "REAL" for your field data type. e.g.:

Code:
CREATE TABLE IF NOT EXISTS my_table (id INTEGER PRIMARY KEY, someval_ieee REAL)