我有一系列要从sql表中提取的值,但价格固定为十进制。我不知道该怎么做。所以我有这个:

int currentID = cursor.getInt(idColumnIndex);
String currentProduct = cursor.getString(productColumnIndex);
int currentPrice = cursor.getInt(priceColumnIndex);
int currentQuantity = cursor.getInt(quantityColumnIndex);
String currentSupplier = cursor.getString(supplierColumnIndex);
int currentPhone = cursor.getInt(phoneColumnIndex);


目前,我已将价格设置为整数,但在我的sql表中将其设置为十进制。我如何在这里提取它?

最佳答案

Double currentPrice = cursor.getDouble(priceColumnIndex);

关于javascript - 从SQL提取十进制值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51621275/

10-15 05:15