sieeniu/slight-pdo

此包最新版本(dev-master)没有可用的许可证信息。

PHP的PDO包装器

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

This package is auto-updated.

Last update: 2024-09-27 17:26:29 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")
  )
);