major redesign to enable multiple instances via "new MeekroDB()" while preserving full backwards

compatability

static methods DB::whatever() will still be the recommended method of use, but the new object oriented
approach is now available to those who want it
This commit is contained in:
Sergey Tsalkov
2011-12-24 16:12:13 -08:00
parent 34c0f5e0a7
commit 1d5844bcc0
3 changed files with 596 additions and 173 deletions

View File

@@ -27,12 +27,14 @@ DB::$dbName = $set_db;
DB::$host = $set_host;
require_once 'BasicTest.php';
require_once 'ObjectTest.php';
require_once 'WhereClauseTest.php';
require_once 'ErrorTest.php';
$classes_to_test = array(
'BasicTest',
'WhereClauseTest',
'ObjectTest',
'ErrorTest',
);