Hello, Is there a function in java similar to the php "stripslashes" function or do I have to parse the string myself before inserting a record to mysql? Thank you. claude
what does the "stripslash" function in PHP do? If you are worried about special characters, then use the prepared statement because it deals with special characters internally. Jamie
claude favre
Greenhorn
Joined: Jun 25, 2001
Posts: 5
posted
0
It basically deal with special char in text such O'brien, it would in this example escape the apostrophe. Claude