clausulaInsertIntSqlite static method
Implementation
static clausulaInsertIntSqlite(int? pvalue) {
if (pvalue == null) {
return "0";
} else {
return pvalue.toString();
}
}
static clausulaInsertIntSqlite(int? pvalue) {
if (pvalue == null) {
return "0";
} else {
return pvalue.toString();
}
}