I am converting a PHP-mySQL application to a PHP-ODBC application. those. database transfer from mysql to DB2.
When using mysql, I used a mysql_data_seekfunction to reset the record set pointer, but this does not work for an ODBC connection. I tried and checked odbc_fetch_row($recordset,0)to reset the recordset, but this does not work. Does anyone know how to reset a recordset through an ODBC connection?
source
share