本文整理汇总了PHP中MySQLDatabase::getInstance方法的典型用法代码示例。如果您正苦于以下问题:PHP MySQLDatabase::getInstance方法的具体用法?PHP MySQLDatabase::getInstance怎么用?PHP MySQLDatabase::getInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MySQLDatabase
的用法示例。
在下文中一共展示了MySQLDatabase::getInstance方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: eval
//For short notations
if ($shortnotation_for_redbean) {
eval("\n\t\n\t\tclass {$shortnotation_for_redbean} extends RedBean_OODB { }\n\t\n\t");
}
if ($shortnotation_for_redbeandecorator) {
eval("\n\t\n\t\tclass {$shortnotation_for_redbeandecorator} extends RedBean_Decorator { }\n\n\t");
}
/**
* Initialize the ADODB wrapper for MYSQL and
* prepare RedBean OODB
*/
//get an instance of the MySQL database
if (isset($dsn)) {
$db = PDODriver::getInstance($dsn, $username, $password, null);
} else {
$db = MySQLDatabase::getInstance($hostname, $username, $password, $databasename);
}
if (isset($for_testing_reset_redbean)) {
$db->Execute("drop tables dtyp,locking,patient,redbeantables,searchindex");
}
//$db->SetFetchMode(2);//RedBean uses ADO-fetch-mode 2 -- USE IF YOU REQUIRE ADO!
if ($debugmode) {
$db->setDebugMode(1);
}
RedBean_OODB::$db = new RedBean_DBAdapter($db);
//Wrap ADO in RedBean's adapter
if ($engine) {
RedBean_OODB::setEngine($engine);
//select a database driver
}
RedBean_OODB::init();