MySQL(i) class

1.42 2013-06-04 09:41 UTC

This package is not auto-updated.

Last update: 2024-03-26 01:44:51 UTC


README

Init

$DSN = array (
    'host'=>'localhost',
	'base'=>'dbname',
	'user'=>'user',
	'pass'=>'password',
	'char'=>'utf-8'
);
new \DBI\MySQL ($DSN);

Use

\DBI\MySQL::query ("SELECT 1;");