本文整理汇总了PHP中M::getDatabaseDSN方法的典型用法代码示例。如果您正苦于以下问题:PHP M::getDatabaseDSN方法的具体用法?PHP M::getDatabaseDSN怎么用?PHP M::getDatabaseDSN使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类M
的用法示例。
在下文中一共展示了M::getDatabaseDSN方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: execute
public function execute($params)
{
$db = MDB2::factory(M::getDatabaseDSN());
$h = $db->dsn['hostspec'];
$u = $db->dsn['username'];
$p = $db->dsn['password'];
$dbn = $db->database_name;
$mysqlbin = '/usr/bin/env mysql';
$catbin = '/usr/bin/env cat';
$file = $this->baseFolder . 'src/tag.sql';
$sys = "{$catbin} {$file} | {$mysqlbin} --host={$h} --user={$u} --password={$p} {$dbn}";
system($sys, $return);
$this->line('Creating tables :');
$this->line('* tag');
$this->line('* tag_record');
$this->line('* tag_history');
}
示例2: executeSQLFile
public static function executeSQLFile($file)
{
$db = MDB2::singleton(M::getDatabaseDSN());
$h = $db->dsn['hostspec'];
$u = $db->dsn['username'];
$p = $db->dsn['password'];
$dbn = $db->database_name;
$com = "cat {$file} | /usr/bin/env mysql --host={$h} --user={$u} --password={$p} {$dbn}";
self::line($com);
system($com);
}
示例3: db
public static function db()
{
return MDB2::singleton(M::getDatabaseDSN(), array('debug' => 1));
}