DB.php 545 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: Zip
 * Date: 14/12/9
 * Time: 下午10:32
 */

namespace Hood;

use Hood\Dao\Db\MySQL;

class DB
{
    /**
     * 原生不带缓存
     * @param $database
     * @return MySQL\Connection
     */
    static function Connection($database)
    {
        return new MySQL\Connection($database);
    }

    /**
     * 快速数据存取(带缓存的DB)
     * @param $database
     * @return MySQL\Quick
     */
    static function Quick($database)
    {
        return new MySQL\Quick($database);
    }
}