Use single quotes in escapeStringForSql (#379)

This commit is contained in:
creator3 2017-07-16 17:53:15 -04:00 committed by Luck
parent cadd7545c5
commit ad6e837aa5

View File

@ -138,7 +138,7 @@ public class BulkUpdate {
// ignored
}
return "\"" + s + "\"";
return "'" + s + "'";
}
}