Pdo V2.0 Extended Features — Portable

You can now define explicit pooling parameters within the PDO constructor options to manage min/max connections, idle timeouts, and recycling thresholds.

while ($request = $ev->waitForRequest()) $db = new PDO('dsn', 'user', 'password'); $app->setDb($db); $app->handle($request); $db->reset(); // Clean state without closing the underlying socket $app->setDb(null); pdo v2.0 extended features

If you are looking for the absolute latest version, you should look toward PDO Reloaded . However, PDO v2.0 Extended Features You can now define explicit pooling parameters within

PDO (PHP Data Objects) is a database abstraction layer for PHP that provides a uniform interface for accessing different databases. PDO v2.0 is a significant update that introduces several extended features, which are reviewed in-depth in this article. waitForRequest()) $db = new PDO('dsn'