sieeniu/slight-pdo

There is no license information available for the latest version (dev-master) of this package.

PDO wrapper for PHP

dev-master 2021-08-26 12:12 UTC

This package is auto-updated.

Last update: 2025-07-27 19:33:48 UTC


README

use SlightPDO\Configuration;
use SlightPDO\Connection;
use SlightPDO\Factory;

require_once __DIR__ . '/vendor/autoload.php';

$connection = Factory::create(
  new Connection(
    new Configuration("host", 3306, "databaseName", "username", "password")
  )
);