Table structure:
title { name varchar(100) }
If I try to insert a following query
insert into wikititle values('Men's');
I am getting an error quoted string not terminated properly.
Even if I use set escape on make it as
insert into wikititle values('Men\'s');
and inserted I am getting this error.
I am doing all these executions in oracle 11i sql plus.
In Oracle, you need to double the quote:
Here is a link to a test query on sqlfiddle.