Subject Re: [Firebird-Java] Insert string with quotes
Author Roman Rokytskyy
> How can I insert a string that contains a quote?

If you mean single quote ('), you can use '' in SQL. If you mean double
quote you just have to escape it in Java (\"). And for sure you can insert
it as parameter using the PreparedStatement.

Roman