clausulaInsertStringSqlite static method
Implementation
static clausulaInsertStringSqlite(String? pvalue) {
if (pvalue == null) {
return "null";
} else if (pvalue.isEmpty) {
return "null";
} else {
return "'$pvalue'";
}
}
static clausulaInsertStringSqlite(String? pvalue) {
if (pvalue == null) {
return "null";
} else if (pvalue.isEmpty) {
return "null";
} else {
return "'$pvalue'";
}
}