We make extensive use of named bind params in our apps (our DB is Oracle).
I just tried running a test program over DBD::Proxy and found it barfs on
these. Here is the code in DBD::Proxy that doesn't like them .
sub bind_param ($$$@) {
my $sth = shift; my $param = shift;
$sth->{'proxy_params'}->[$param-1] = [EMAIL PROTECTED];
}
Doing a google search on this turned up some pretty old stuff - e.g.
http://www.grin.net/~mirthles/pile/dbi-tim_bunce_call_on_proxy_module_with_o
racle_bind_param.html
Does anyone know whether a fix to DBD::Proxy is planned?
Thanks,
Steve