Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have a string that looks like this:

This is a string
with single quotes ' all over
the ' place as well as
return characters

How would I convert this to a string that can be used in an INSERT statement?

INSERT INTO MyTable VALUES ('<the above string>');

The string above has the problems that it has return characters as well as single quotes which would mess up the validity of the INSERT statement above.

Edit: Sorry I probably should have been more clear. I'm generating a SQL Script with INSERT statements, not executing SQL within a Java app.

share|improve this question
2  
Yeah, you should have said that. Unfair to down vote because you gave bad information. – duffymo Sep 23 '10 at 1:46
retracted...... – digiarnie Sep 23 '10 at 1:50

4 Answers

up vote 2 down vote accepted

I'm generating a SQL Script with INSERT statements, not executing SQL within a Java app.

In that case, you'll have to generate an "escaped" version of the String. To do so, I'd suggest using the ESAPI library from the OWASP project (if possible). See Defense Option 3: Escaping All User Supplied Input for more details.

share|improve this answer

Use PreparedStatement:

String sql = "INSERT INTO MyTable VALUES (?)";
PreparedStatement ps = connection.prepareStatement(sql);
ps.setString(1, theAboveString);
ps.executeUpdate();
share|improve this answer
+1 Beat me to it – Pascal Thivent Sep 23 '10 at 1:44
I'm not executing the SQL however. I'm intending on generating a SQL Script that has INSERT statements in it for someone else to execute. – digiarnie Sep 23 '10 at 1:44

To put a single quote inside of an SQL string, use it twice.

so

insert into mytable
values ('isn''t it lovely?')

So when generating the sql script, just replace all single quotes with double quotes before tacking the beginning and ending single quotes onto it.

share|improve this answer

why dont use escape the single quotes like below

This is a string with single quotes \' all over the \' place as well as return characters

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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