corneltek/dbutil

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

Maintainers

Package info

github.com/c9s/DBUtil

pkg:composer/corneltek/dbutil

Statistics

Installs: 2 201

Dependents: 0

Suggesters: 0

Stars: 4

Open Issues: 0

1.0.5 2015-07-14 10:07 UTC

This package is auto-updated.

Last update: 2026-03-01 00:08:20 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' );