I\'m dealing with lots of different currencies in my application, and I want to know what the \"best\" way is to store them in an SQLite3 database.
I\'m leaning towa
best currency DataType is BigDecimal and in sqlite you can store it as a VARCHAR field
BigDecimal
VARCHAR
ormlite convert BigDecimal to string when you store it.
ormlite doc for BigDecimal