现在我遇到了相反的问题 – 从POJO中的BigDecimal到sqlite表中的REAL.
POJO定义为:
public class DeliveryItem { private int _ID; private String _invoiceNumber; private String _UPC_PLU; private String _vendorItemID; private int _packSize; private String _description; private BigDecimal _cost; private BigDecimal _margin; private BigDecimal _ListPrice; private int _departmentNumber; private String _subdepartment; private String _quantity; public voID setID(int ID) { this._ID = ID; } . . .
这段代码,试图使数据形状能够发布到sqlite表(其中相应的列是数据类型REAL,sqlite唯一的实数/浮点数据类型):
public long addDeliveryItem(DeliveryItem delitem) { long IDAdded = 0; ContentValues values = new ContentValues(); values.put(ColUMN_INVOICENUM,delitem.get_invoiceNumber()); values.put(ColUMN_UPCPLU,delitem.get_UPC_PLU()); values.put(ColUMN_vendORITEMID,delitem.get_vendorItemID()); values.put(ColUMN_PACKSIZE,delitem.get_packSize()); values.put(ColUMN_DESCRIPTION,delitem.get_description()); //values.put(ColUMN_COST,delitem.get_cost()); //values.put(ColUMN_COST,new BigDecimal(delitem.get_cost())); values.put(ColUMN_COST,(Double) delitem.get_cost()); values.put(ColUMN_margin,delitem.get_margin()); values.put(ColUMN_ListPRICE,delitem.get_ListPrice()); values.put(ColUMN_DEPTNUM,delitem.get_departmentNumber()); values.put(ColUMN_SUBDEPT,delitem.get_subdepartment()); values.put(ColUMN_QTY,delitem.get_quantity()); sqliteDatabase db = this.getWritableDatabase(); if (db != null) { IDAdded = db.insert(table_DEliVERYITEMS,null,values); } if (db != null) { db.close(); } return IDAdded;}
对于上面的ColUMN_COST行(“margin”和“ListPRICE”列有相同的问题),我得到,“错误:不兼容的类型:BigDecimal无法转换为Double”当我尝试这样做:
values.put(ColUMN_COST,(Double) delitem.get_cost());
…以及注释掉的代码(两行),即:
values.put(ColUMN_COST,delitem.get_cost());
…还有这个:
values.put(ColUMN_COST,new BigDecimal(delitem.get_cost()));
…我明白了,“错误:找不到合适的put方法(String,BigDecimal)
方法ContentValues.put(String,String)不适用
(参数不匹配; BigDecimal无法转换为String)
方法ContentValues.put(String,Byte)不适用
(参数不匹配; BigDecimal无法转换为Byte)
方法ContentValues.put(String,Short)不适用
(参数不匹配; BigDecimal无法转换为Short)
方法ContentValues.put(String,Integer)不适用
(参数不匹配; BigDecimal无法转换为Integer)
方法ContentValues.put(String,Long)不适用
(参数不匹配; BigDecimal无法转换为Long)
方法ContentValues.put(String,float)不适用
(参数不匹配; BigDecimal无法转换为float)
方法ContentValues.put(String,Double)不适用
(参数不匹配; BigDecimal无法转换为Double)
方法ContentValues.put(String,Boolean)不适用
(参数不匹配; BigDecimal无法转换为布尔值)
方法ContentValues.put(String,byte [])不适用
(参数不匹配; BigDecimal无法转换为byte [])“
那么我如何 *** 作BigDecimal值,以便ContentValues实例接受它?
UPDATE
我可能只需忽略那些val并将DDL更改为以下内容来暂时捏造它:
//+ ColUMN_COST + " REAL," + ColUMN_margin + " REAL," + ColUMN_ListPRICE + " REAL,"+ ColUMN_COST + " REAL DEFAulT 0," + ColUMN_margin + " REAL DEFAulT 0," + ColUMN_ListPRICE + " REAL DEFAulT 0,"解决方法
So how can I manipulate the BigDecimal value in the so that it will be accepted by the ContentValues instance?
那么,您可以将call doubleValue()
on the BigDecimal
降级为双倍,这可以放在ContentValues中(在将其自动装箱为Double之后).或者,您可以将其字符串表示存储在TEXT列中.或者,您可以将unscaledValue()和scale()存储在两个INTEGER列中.
But sqlite’s closest match is REAL
不它不是.
您似乎对在sqlite中存储定价数据感兴趣.在主要搜索引擎上搜索sqlite中存储价格的搜索结果如下:
> SQLite how to use integer for storing price value
> Storing currency values in SQLite3
> https://dba.stackexchange.com/questions/15729/storing-prices-in-sqlite-what-data-type-to-use
一致意见是将价值存储为INTEGER列,以最小的单个货币单位(例如,以美元计算的货币价值的美分),或其他适当的其他东西(例如,如果这是最精细的粒度,则为十分之一美分).价格).
然后,您的POJO将保持int值以匹配.
总结以上是内存溢出为你收集整理的如何在Real(SQlite)列中存储BigDecimal(Java)值?全部内容,希望文章能够帮你解决如何在Real(SQlite)列中存储BigDecimal(Java)值?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)