RE: bind_param_inout + DBD::ODBC

2005-10-13 Thread Jeff Urlwin
:[EMAIL PROTECTED] Sent: Wednesday, October 12, 2005 2:30 PM To: dbi-users@perl.org Subject: bind_param_inout + DBD::ODBC I am currently having a problem calling a stored procedure on an iSeries. DBD::ODBC::st execute failed: [unixODBC][IBM][iSeries Access ODBC Driver]Error in assignment

RE: bind_param_inout + DBD::ODBC

2005-10-13 Thread Jeff Urlwin
To: Jeff Urlwin Cc: dbi-users@perl.org Subject: Re: bind_param_inout + DBD::ODBC I have tried the following code: my( $sth ) = $dbh-prepare ({call PGMRPGMLIB.SYSSTATS(?, ?, ?)}); my( $asp ) = undef; my( $cpu ) = undef

bind_param_inout + DBD::ODBC

2005-10-12 Thread Stephen More
I am currently having a problem calling a stored procedure on an iSeries. DBD::ODBC::st execute failed: [unixODBC][IBM][iSeries Access ODBC Driver]Error in assignment. (SQL-22018)(DBD: st_execute/SQLExecute err=-1) In looking through the perldoc doc for DBI I found: bind_param_inout It is

Re: bind_param_inout + DBD::ODBC

2005-10-12 Thread Dan Scott
DBD::DB2 (http://search.cpan.org/dist/DBD-DB2/DB2.pod) supports bind_param_inout, but it would require you to use the DB2 Connect Personal Edition or DB2 Connect Unlimited for iSeries to access iSeries from your Linux, UNIX, or Windows box. Dan On 10/12/05, Stephen More [EMAIL PROTECTED] wrote: