// create engine: server, user, password
$db = new MysqlEngine("localhost","smoke","");
// set database name
-$db->setDbName("smoke2");
-//$db->setDbName("DB396352");
-// set table-prefix (optional)
-$db->setPrefix("smoke_");
+$db->setDbName("smoke");
+// set table-prefix (must be non-empty)
+$db->setPrefix("smoke2_");
//set this to one of the supported MySQL storage engines for DB creation
$db->setStorageEngine("InnoDB");
//set default character set
////////////
// DB Administration
-//use this for DB creation and upgrading, comment it out otherwise
+//use this for DB creation and upgrading, comment it out otherwise.
//change the passcode before using this on a production system!!!
$db->setAdminPassCode("Admin","SmokeInMyEye");