SyntaxFix
Write A Post
Hire A Developer
Questions
For programmatic access, you can use placeholders to automatically escape unsafe characters for you.
In Perl DBI, for example, you can use:
my $string = "This is Ashok's pen"; $dbh->do("insert into my_table(my_string) values(?)",undef,($string));