How can I deal with an apostrophy
My simple questions is how can I deal with an apostrophy when I trying to save to the table, here is an example in how I am saving.
'Sandr'as Casa' this gives me an error message. I have to do it like this
Strings.replace("Sandr'as Casa"," ' "," ' ' "), a package function
SQLDesFollow = "UPDATE [CRVMReq] " +
"SET [SkillSet]='" + Strings.replace("Sandr'as Casa"," ' "," ' ' ")+ "'" WHERE [ReqId]='" + ReqValuesReqId[4] + "";
dbs.execute(SQLDesFollow);
SQLDesFollow = "UPDATE [CRVMReq] " +
"SET [SkillSet]='Sandr'as Casa' WHERE [ReqId]='" + ReqValuesReqId[4] + "";
dbs.execute(SQLDesFollow);
any help will be appreciated.

