Subject Re: [Firebird-Java] help replace
Author Roman Rokytskyy
> sapete dirmi perchè questa istruzione java:
> str = str.replaceAll("'", "\'"); non mi funziona?
> In pratica sto recuperando dati da Firebird per inserirli in mysql
> e devo sostituire gli apostrofi.

I have not understood what you have asked (I suspect that's Italian, isn't
it?), but let me guess - what is the correct replacement for the single
quote in a string literal. In Firebird it is two sigle-quotes ('', but not
").

str = str.replaceAll("'", "''");

Roman