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


PHP Installer::readSQLFile方法代码示例

本文整理汇总了PHP中Installer::readSQLFile方法的典型用法代码示例。如果您正苦于以下问题:PHP Installer::readSQLFile方法的具体用法?PHP Installer::readSQLFile怎么用?PHP Installer::readSQLFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Installer的用法示例。


在下文中一共展示了Installer::readSQLFile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: intval

# Do updates based on version
#	But cascade the updates
$CURRENT_VERSION = intval(str_replace('.', '', $CURRENT_VERSION));
$latestversion = intval(str_replace('.', '', UPDATE_VERSION));
$mysqlDiff = new MySQLDiff(array('dbuser' => DBASE_USER, 'dbpass' => DBASE_PASS, 'dbname' => DBASE_NAME, 'dbhost' => DBASE_SERVER, 'dumpxml' => 'sql/structure.xml'));
$diffs_done = $mysqlDiff->getSQLDiffs();
if (!is_array($diffs_done)) {
    $diffs_done = array();
}
# Run it local so it's logged
foreach ($diffs_done as $sql) {
    DB::query($sql);
}
/* Run the update fixtures file */
echo '<h2>Populating Update Data...</h2>';
$sqlLines = Installer::readSQLFile(SITE_ROOT . '/install/fixtures/update.sql', TABLE_PREFIX);
foreach ($sqlLines as $sql) {
    DB::query($sql['sql']);
    if (DB::errno() != 0 && DB::errno() != 1062) {
        echo '<div id="error" style="text-align: left;">Writing to "' . $sql['table'] . '" table... ';
        echo "<br /><br />" . DB::error();
        echo '</div>';
    }
}
OperationsData::updateAircraftRankLevels();
/* Add them to the default group */
$status_type_list = Config::get('PILOT_STATUS_TYPES');
$pilot_list = PilotData::getAllPilots();
foreach ($pilot_list as $pilot) {
    echo "Fixing settings for " . $pilot->firstname . " " . $pilot->lastname . "<br>";
    PilotData::resetLedgerforPilot($pilot->pilotid);
开发者ID:phpmods,项目名称:phpvms_5.5.x,代码行数:31,代码来源:update.php

示例2: dirname

<?php

include dirname(__FILE__) . '/bootstrap.inc.php';
include SITE_ROOT . '/install/includes/Installer.class.php';
echo '<pre>';
$_POST['TABLE_PREFIX'] = 'phpvms_';
$sql = Installer::readSQLFile(SITE_ROOT . '/install/sql/install.sql');
print_r($sql);
开发者ID:Galihom,项目名称:phpVMS,代码行数:8,代码来源:installer.php


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