码迷,mamicode.com
首页 > 移动开发 > 详细

Android Sqlite 读取数据99999.99变为100000.00,出现科学计数法

时间:2014-09-15 17:53:29      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:sqlite   解决方案   数据库   android   

问题描述:

将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. 

Android Sqlite 读取数据99999.99变为100000.00,出现科学计数法

标签:sqlite   解决方案   数据库   android   

原文地址:http://blog.csdn.net/zhjali123/article/details/39294075

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!