Manual Installation
Download the latest release
If you prefer not to use Composer, you can install PDOdb manually by downloading the latest release directly from GitHub:
Unpack the file and place PDOdb.php
in a location that suits your project structure.
Include and use
To use the class, you must include the file manually and reference the correct namespace:
require_once __DIR__ . '/libs/PDOdb.php';
use decMuc\PDOdb\PDOdb;
$db = new PDOdb(...);
Adjust the file path according to your directory structure.
Important note
Even when installed manually, the class retains its decMuc\PDOdb
namespace.
You must either import it via use
or reference it directly via new \decMuc\PDOdb\PDOdb()
.