Jeff Zucker wrote:
> Steffen G. wrote:
>>As this problem is similar to a bug I've found few months ago, which Jeff
>>could fix by adding a line in SQL::Parser (thanks again)
>>
> Steffen, could you resend me that previous fix, I've had some mail
> storage disasters and I want to make sure I have that.

Sure. It was about backslash quoting (all backslashes were doubled when
stored and fetched again), solution was to insert this line before line
1748 in SQL::Parser:

     @$fields = map { s/\\\\/\\/g; $_ } @$fields;

>>, I looked for a
>> similar solution [...]
>
> [...]
> Of course, using placeholders instead of quote() hops around the entire 
> problem, but still it needs to be fixed.  Thanks much!

I must admit I didn't think about placeholders instead of quote(), as I'm
not too familar with them. I'll have another look at this topic, thanks a
lot for your hint.

Steffen

Reply via email to