I\'m having issues dealing with the single quote while using it in a prepared statement in JAVA via Oracle JDBC.
Let\'s say we have a table Restaurant with a column rest
The point of prepared statements is that you don't need any escaping.
.setString(1, "Jack's Deli") will get it done.
.setString(1, "Jack's Deli")