Re: DBD::ODBC does not support bind_param_inout?

2007-08-01 Thread Bart Lateur
Sorry for the late reply, but I'm only scanning my inbox now. On Wed, 18 Jul 2007 17:35:51 +0800, hu.darren wrote: my $csr = $dbh-prepare(q{ BEGIN :whoami := PLSQL_EXAMPLE_DARREN.FUNC_NP; END; }); but I failed with: Can't bind unknown placeholder ':whoami' at

Re: DBD::ODBC does not support bind_param_inout?

2007-07-19 Thread Martin Evans
hu.darren wrote: Hi, I have installed the DBD::ODBC from the latest svn. when I want execute a procedure like this: my $whoami = ; my $csr = $dbh-prepare(q{ BEGIN :whoami := PLSQL_EXAMPLE_DARREN.FUNC_NP; END; }); I presume since that

DBD::ODBC does not support bind_param_inout?

2007-07-18 Thread hu.darren
Hi, I have installed the DBD::ODBC from the latest svn. when I want execute a procedure like this: my $whoami = ; my $csr = $dbh-prepare(q{ BEGIN :whoami := PLSQL_EXAMPLE_DARREN.FUNC_NP; END; }); $csr-bind_param_inout(:whoami, \$whoami, 20);