Re: Get MySQL to ignore the backslashes?

2004-04-14 Thread gsargucci
My apologies for missing the previous discussion and thanks for the info. A follow up question: is there a performance penalty associated with using PreparedStatement's with queries that will never be reused? Clearly, there's a performance benefit for statements executed multiple times, but

Get MySQL to ignore the backslashes?

2004-04-12 Thread gsargucci
Is there a 'global' way to tell MySQL to not interpret the backslashes ('\'s) in the submitted SQL as escape characters? In other words, I'd like for them to always be treated as if they themselves were already escaped with a backslash (i.e. '\\'). I'm using 3.23.52, accessing it with an

Re: Get MySQL to ignore the backslashes?

2004-04-12 Thread Garth Webb
Hi Alex. This question was discussed last week. Search the archives for 'backslash'. The short answer is that there is no global option to do what you want. You'll have to do it in code. On Mon, 2004-04-12 at 17:10, [EMAIL PROTECTED] wrote: Is there a 'global' way to tell MySQL to not