问题描述:
将99999.99存入Sqlite数据库,类型为DECIMAL(6,3)。通过cursor.getString()变为100000.00
且存储亿位数据时:cursor.getString()会出现异常,或直接转换为科学计数法
解决方案:
1.针对Sqlite数据类型进行读取(即使Sqlite无类型),DECIMAL类型用cursor.getDouble()。
2.不要对Sqlite设置类型,全用text。关于怎么更改Sqlite表结构,列属性可以看我下一篇文章
错误原因:
我猜可能是安卓api对数据库存取有优化吧!据说SQLite数据库都是按照String存储,那只能是Android API优化过吧!具体我也不知道
启发:
Sqlite无类型区别,官网上说是Manifest Type,In manifest typing, the datatype is a property of the value itself, not of the column in which the value is stored. 你所以避免麻烦全用text吧!
对于长度的考虑也是多余的,官网说它是按存储数据长度存储,而不是建表时声明的长度:SQLite, in contrast, use only the amount of disk space actually needed to store the information in a row. If you store
a single character in a VARCHAR(100) column, then only a single byte of disk space is consumed.
时间: 2024-10-23 22:13:00