Not 100% sure how..
But I'd search on how SQL insert statements handle apostrophes in inserting data.
Then I'd use the technique to 'replace' apostrophes with whatever the syntax SQL is appropriate for the database/SQL.
e.g.
Code:
tempStr = "String with apost'rophe" newStr = replace(tempStr,"'","''") ''DOUBLE
Leave a comment: