vote up 0 vote down star

I'm still somewhat new to Java and trying to insert data into a database. I'm getting an error when inserting a string containing 's so my end result would be to escape the apostrophe. How can I accomplish?

flag

78% accept rate
1  
"The crux of the biscuit is the apostrophe" - FZ – Paul Croarkin Nov 4 at 21:09

6 Answers

vote up 1 vote down check

Using StringEscapeUtils:

StringEscapeUtils.escapeSql(yourstring);
link|flag
That's exactly what I was looking for. – Jonathan Kushner Nov 4 at 19:18
vote up 10 vote down

Use prepared statements. As well as handling any special characters, they are much more robust and help prevent sql injection attacks.

link|flag
1  
+1 This answer gets to the heart of the issue: hand-coding your own SQL in your method calls is bad practice, and opens you up to a host of security issues. – rtperson Nov 4 at 18:34
A good habit to get into, but perhaps overkill for learning the language. – Chris Kaminski Nov 4 at 18:34
2  
... just ask Little Bobby Tables. :) – rtperson Nov 4 at 18:35
+1 for XKCD reference xkcd.com/327 – Chris Nava Nov 4 at 19:22
vote up 5 vote down

The issue really isn't with Java, rather with the underlying database. Most likely you are stringing your parameters together like this:

  String sql = "select * from sometable where somefield = " + someObject.getSomeField();

Don't do that. Use PreparedStatement's instead.

That has the added advantage of preventing SQL injection attacks, if this is an application that has to be concerned about such things.

link|flag
+1: it not only saves you from SQL injection attacks, but it also eases setting Java objects inside a SQL statement (Date, InputStream, etc) and is technically also more performant (precompiled at DB). – BalusC Nov 4 at 18:54
vote up 2 vote down

Depends on the database, but you can use '' in SqlServer.

EDIT: In MySql you can use a double apostrophe or backslash: http://www.faqts.com/knowledge_base/view.phtml/aid/630

link|flag
Double apostrophe in postgres – Ewan Nov 4 at 18:33
And I'll agree with James in comment: use prepared statements. Much better long-term solution. – Michael Todd Nov 4 at 18:34
vote up 1 vote down

I assume you are using a java.sql.Statement, and calling the executeQuery method with a String. That's bad, because it's possible to do SQL injection. You should use a java.sql.PreparedStatement instead, and then you can set any String that you want as a parameter, and you won't have your problem.

For example:

PreparedStatement pstmt = con.prepareStatement("UPDATE MY_TABLE SET TEXT_FIELD = ?");
pstmt.setString(1, "any String 'will work here!");
link|flag
vote up 0 vote down

That's dependent on the database you are using. Usually '' works (I only have firsthand knowledge with SQL Server).

What database are you using?

link|flag
I'm using mysql – Jonathan Kushner Nov 4 at 18:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.