I'm using System.Data.SQLite to save data to database. In table there are 2 columns defined as float. However when I save data to DB it saves only integer part.
12.2345 => 12 11.5324 => 11 (I don't know how exactly it rounds, it just rounds)
Yes I'm sure I'm using floats in my application, and I'm sure that CommandText contains float numbers NOT integer.