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
Requires
- php: >=5.3.0
Requires (Dev)
- corneltek/phpunit-testmore: dev-master
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' );