corneltek/dbutil

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

1.0.5 2015-07-14 10:07 UTC

This package is auto-updated.

Last update: 2024-03-29 02:58:15 UTC


README

    $creator = new CornelTek\DBUtil;
    $conn = $creator->create( 'mysql' , array(
        // connection string
        'username' => 'root',
        'password' => '123123',
        'database' => 'mysql_test',
    ));
    ok($conn);
    $creator->dropFromConnection( $conn , 'mysql_test' );