Re: [Sqlrelay-discussion] [sqlrelay] propagating placeholders (question marks) with DBD::SQLRelay
Brought to you by:
mused
|
From: Lawrence, G. <gla...@uc...> - 2009-07-10 02:57:05
|
I had the same problem in the past and commenting out this worked for me: $statement =~ s/\?/":" . ++$count/eg; in the installed SQLRelay.pm file, which should be line around 135. This will disable conversion of ?'s to colon-delimited variables. The query should be passed directly into the DB as-is with ?'s. |