I have started to migrate commons.lang 2 to commons.lang3.
According to https://commons.apache.org/proper/commons-lang/article3_0.html
StringEscapeUtils.escapeSql
This was a misleading method, only handling the simplest of possible SQL cases. >As SQL is not Lang's focus, it didn't make sense to maintain this method.
Understand it but what is recommended to use instead of it?
Clarification
Can you recommend a third party that perform simple escapeSql similar to StringEscapeUtils.escapeSql?
From the Javadocs:
This was the method code:
So you could easily replace the method with a simple call to
String#replace
.However, there is a reason that the method was removed. It was really half-baked and I cannot think of a good reason why you would want to use it. To run JDBC queries for example, you can and should use bind variables instead of trying to interpolate and escape string literals.