fix export error for non-unicode numbers (#3444)
This commit is contained in:
parent
0e56dd8bc2
commit
15791b732c
|
@ -192,7 +192,7 @@ public class ExportBackupService extends Service {
|
|||
final String value = cursor.getString(i);
|
||||
if (value == null) {
|
||||
builder.append("NULL");
|
||||
} else if (value.matches("\\d+")) {
|
||||
} else if (value.matches("[0-9]+")) {
|
||||
builder.append(value);
|
||||
} else {
|
||||
DatabaseUtils.appendEscapedSQLString(builder, value);
|
||||
|
|
Loading…
Reference in a new issue