当前位置: 首页>>代码示例>>PHP>>正文


PHP MySQLDatabase::getInstance方法代码示例

本文整理汇总了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();
开发者ID:Jamongkad,项目名称:Sunfish,代码行数:31,代码来源:oodb.php


注:本文中的MySQLDatabase::getInstance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。