| Forums: |
Web Services
JDBC
|
| Author |
SQL Insert Problem
|
Johny Lee
Greenhorn
Joined: Dec 14, 2012
Posts: 4
|
|
|
I have column in my database which is client Remarks and it's defined as TEXT but I have been having errors whenever a client enters remarks such "I'm not doing this" but if a client enters "I am not doing this". It's fine. Please help. The error occurs whenever a client completes a form online on the website, coding was done with php and MySQL for the website.
|
 |
Praful Thakare
Ranch Hand
Joined: Feb 10, 2001
Posts: 613
|
|
well this is not webservice question, but with 2 posts only you look new to JavaRanch.
replace all your special characters with escape sequence for mysql, i think it is \, so something like.
In future, put your questions to relevant forums
|
All desirable things in life are either illegal, banned, expensive or married to someone else !!!
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16483
|
|
Would I be correct in guessing that you are generating your SQL insert command by a Java string concatenation which looks something like this?
If so then you have the "O'Brien" problem. So stop doing that and use a PreparedStatement instead. Here's a link to the tutorial: Using Prepared Statements.
|
 |
 |
|
|
subject: SQL Insert Problem
|
|
|