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


PHP DBConnect::initDatabaseFromXML方法代码示例

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


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

示例1: initDatabaseConnections

    /**
     * Initializes the PDO-Object, used for Database-Queries
     *
     * triggers an error when
     */
    private function initDatabaseConnections()
    {
        try {
            $connector = new DBConnect();
            $connector->initDatabaseFromXML();
            $this->_pdo = $connector->getPdo();
            $this->_em = $connector->getDoctrineEntityManager();
            $this->_pdo->query('SET @activeSchoolyear :=
				(SELECT ID FROM SystemSchoolyears WHERE active = "1" LIMIT 1);
			');
        } catch (PDOException $e) {
            echo $e->getMessage();
            die("Sorry, could not connect to the database with pdo.");
        }
    }
开发者ID:babesk,项目名称:babesk,代码行数:20,代码来源:Administrator.php

示例2: dirname

<?php

/**
 * This file is outdated, but still needed by parts of the program
 * They use "global $db" to get access to the database
 * @todo: Remove this file and replace the occurences with DBConnect.php and the Class DBConnect
 */
require_once dirname(__FILE__) . '/DBConnect.php';
// $dbObject = new DBConnect($host, $username, $password, $database);
$dbObject = new DBConnect();
$dbObject->initDatabaseFromXML();
$db = $dbObject->getDatabase();
开发者ID:Auwibana,项目名称:babesk,代码行数:12,代码来源:databaseDistributor.php

示例3: initDatabaseConnections

    /**
     * Initializes the PDO-Object, used for Database-Queries
     *
     * triggers an error when the PDO-Object could not be created
     */
    private function initDatabaseConnections()
    {
        try {
            $connector = new DBConnect();
            $connector->initDatabaseFromXML();
            $this->_pdo = $connector->getPdo();
            $this->_em = $connector->getDoctrineEntityManager();
            $this->_pdo->query('SET @activeSchoolyear :=
				(SELECT ID FROM SystemSchoolyears WHERE active = "1");');
        } catch (Exception $e) {
            trigger_error('Could not create the PDO-Object!');
        }
    }
开发者ID:Auwibana,项目名称:babesk,代码行数:18,代码来源:Web.php

示例4: navBar

/**
 * Enter description here...
 */
function navBar($showPage, $table, $headmod, $mod, $action, $filter)
{
    require_once 'sql_access/DBConnect.php';
    $dbObject = new DBConnect();
    $dbObject->initDatabaseFromXML();
    $db = $dbObject->getDatabase();
    $db->query('set names "utf8";');
    $query = sql_prev_inj(sprintf('SELECT COUNT(*) AS total FROM %s', $table));
    $result = $db->query($query);
    if (!$result) {
        throw new Exception('Fehler: Nichts gefunden!');
    }
    $row = $result->fetch_array(MYSQLI_ASSOC);
    $maxPages = ceil($row['total'] / 10);
    $string = "";
    if ($showPage > 1) {
        $string .= '<a href="?sitePointer=1&section=' . $headmod . '|' . $mod . '&filter=' . $filter . '&action=' . $action . '"><<</a>&nbsp;&nbsp;';
        $string .= '<a href="?sitePointer=' . ($showPage - 1) . '&section=' . $headmod . '|' . $mod . '&filter=' . $filter . '&action=' . $action . '"><</a>&nbsp;&nbsp;';
    }
    for ($x = $showPage - 5; $x <= $showPage + 5; $x++) {
        if ($x > 0 && $x < $showPage || $x > $showPage && $x <= $maxPages) {
            $string .= '<a href="?sitePointer=' . $x . '&section=' . $headmod . '|' . $mod . '&filter=' . $filter . '&action=' . $action . '">' . $x . '</a>&nbsp;&nbsp;';
        }
        if ($x == $showPage) {
            $string .= $x . '&nbsp;&nbsp;';
        }
    }
    if ($showPage < $maxPages) {
        $string .= '<a href="?sitePointer=' . ($showPage + 1) . '&section=' . $headmod . '|' . $mod . '&filter=' . $filter . '&action=' . $action . '">></a>&nbsp;&nbsp;';
        $string .= '<a href="?sitePointer=' . $maxPages . '&section=' . $headmod . '|' . $mod . '&filter=' . $filter . '&action=' . $action . '">>></a>&nbsp;&nbsp;';
    }
    return $string;
}
开发者ID:Auwibana,项目名称:babesk,代码行数:36,代码来源:functions.php

示例5: dbInit

 /**
  * Inits the Database of this Class
  */
 protected static function dbInit()
 {
     if (!isset(self::$db)) {
         $dbObject = new DBConnect();
         $dbObject->initDatabaseFromXML();
         self::$db = $dbObject->getDatabase();
         self::$db->query('set names "utf8";');
     }
 }
开发者ID:Auwibana,项目名称:babesk,代码行数:12,代码来源:TableMng.php


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