Today I had been tasked with calling a DB2 stored procedure through PHP. The call looked like the following, with the seven question marks representing bound parameters: CALL LIBRARY_NAME.PROCEDURE_NAME(?, ?, ?, ?, ?, ?, ?); It looks like a simple enough job, and I started with code like the following: $db2Conn = Db2Connection::getConnection(); // Returns ...read more