Brian Swan's Blog: Paging Data with the SQL Server Drivers for PHP: Simplified
Brian Swan has simplified the pagination using the SQL Server drivers for PHP in his latest post. He shows how to use a cursor to move around in the result set from your query. An oversimplified...
View ArticlePHPMaster.com: MongoDB Revisited
In this new post to PHPMaster.com today Ahmed Shreef continues on from his previous introduction to MongoDB and gets into more detail on things like cursors, query operators, queries on embedded...
View ArticleDerick Rethans' Blog: MongoDB Cursors with PHP
Derick Rethans has a new post to his site today about MongoDB cursors in PHP when using the PHP driver and how it handles pulling data from the server. Recently I was asked to improve the...
View ArticleSitePoint PHP Blog: Cursors in MySQL Stored Procedures
On the SitePoint PHP blog there's a new tutorial showing how to use cursors in MySQL stored procedures via PHP. A cursor is a piece of functionality that lets you work with the data in the data found...
View ArticleSitePoint PHP Blog: Paginating Real-Time Data with Cursor Based Pagination
On the SitePoint PHP blog today a new tutorial has been posted introducing you to cursor-based pagination of real-time data, showing the results and allowing for easy click-through functionality....
View ArticleDerick Rethans: Parallelizing document retrieval
In his latest post Derick Rethans shows how to parallelize document retrieval from a MongoDB database via PHP. This makes it possible to speed up the read operation caused by reading each item one at...
View Article