I\'m putting a float in an Android based SQLite database, like so:
private static final String DATABASE_CREATE = \"create table \" + DATABASE_TABLE + \"
I faced the same issue. My Sqlite column was of type FLOAT. I had to cast my Java variable of type Float as double to make the comparison work.