clausulaInsertDoubleSqlite static method
Implementation
static clausulaInsertDoubleSqlite(double? pvalue) {
if (pvalue == null) {
return "0";
} else {
return pvalue.toString().replaceAll(".", "").replaceAll(",", ".");
}
}
static clausulaInsertDoubleSqlite(double? pvalue) {
if (pvalue == null) {
return "0";
} else {
return pvalue.toString().replaceAll(".", "").replaceAll(",", ".");
}
}