Odbc_fetch_into Access ODBC Paging
I implemented a paging function with Odbc_fetch_into, but Odbc_fetch_into gets the row is a numeric array, I want an associative array, what should I do? Or there's no other better way to page out
I'm using an Access database.
Reply to discussion (solution)
Paging can be used ADODB. The RecordSet component, of course, is connected with ADODB. Connection components
When you do not take advantage of components, you should use SQL instructions to remove only the
You are now getting all the results, then the bytes are truncated. This practice is undesirable, too wasteful of resources
Paging can be used ADODB. The RecordSet component, of course, is connected with ADODB. Connection components
When you do not take advantage of components, you should use SQL instructions to remove only the
You are now getting all the results, then the bytes are truncated. This approach is undesirable, too wasteful of resources thanks for the hint