simple database class for working with pdo

1.0.0 2025-05-29 18:52 UTC

This package is auto-updated.

Last update: 2025-06-30 01:27:34 UTC


README

simple wrapper over php pdo

to use it:

use HoltBosse\DB\DB;

DB::createInstance($dsn, $username, $password);

//utility methods
$result = DB::fetch(...);
$result = DB::fetchAll(...);
$result = DB::exec(...);
$result = DB::getLastInsertedId();

//get the raw pdo object
$pdo = DB::getPdo();