coco-soft/db

数据库组件

v0.5 2020-05-14 10:57 UTC

This package is not auto-updated.

Last update: 2024-09-28 20:09:02 UTC


README

基于pdo的数据库连接

<?php

// get a connection

$config = [
    'dsn'=>'mysql:host=localhost;dbname=test',
    'username'=>'root',
    'password'=>'root'
];
$db = new Moon\Db\Connection($config);

//get pdo instance
try{
    $db->getPdo();
}catch (PDOException $e){
    echo $e->getMessage();
}