當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DBConnect::getInstance方法代碼示例

本文整理匯總了PHP中DBConnect::getInstance方法的典型用法代碼示例。如果您正苦於以下問題:PHP DBConnect::getInstance方法的具體用法?PHP DBConnect::getInstance怎麽用?PHP DBConnect::getInstance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在DBConnect的用法示例。


在下文中一共展示了DBConnect::getInstance方法的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 public function __construct($x, $y)
 {
     $db_handle = DBConnect::getInstance();
     $aantalJongeren = new aantalJongeren($db_handle);
     $jaar = $aantalJongeren->showJaren();
     $this->xAx_Points = $jaar;
     $this->yAx_Points = $_POST['PrognoseJongeren'];
 }
開發者ID:Mwalima,項目名稱:databank,代碼行數:8,代碼來源:RegressionTotaalAantalJongerenGemeente.php

示例2: showGemeenteNaam

 public function showGemeenteNaam()
 {
     $db_handle = DBConnect::getInstance();
     $sqlJaar = "SELECT naam FROM Jeugd_Gemeentenaam";
     $stmt = $db_handle->prepare($sqlJaar);
     $stmt->execute();
     $result = $stmt->fetchAll(PDO::FETCH_COLUMN);
 }
開發者ID:Mwalima,項目名稱:databank,代碼行數:8,代碼來源:GemeenteNaam.php

示例3: __construct

 public function __construct($x, $y)
 {
     $db_handle = DBConnect::getInstance();
     $aantalJongeren = new aantalJongeren($db_handle);
     $jaar = $aantalJongeren->showJaren();
     $this->xAx_Points = $jaar;
     $totaalnieuweClienten = $aantalJongeren->showAantalNieuweClienten();
     $this->yAx_Points = $totaalnieuweClienten;
 }
開發者ID:Mwalima,項目名稱:databank,代碼行數:9,代碼來源:RegressionNieuweClienten.php

示例4: update

 public function update($con_id, $username, $phone, $email)
 {
     $db = DBConnect::getInstance();
     $sql = "UPDATE {$this->table} SET \r\n\t\t\t\t\tusername=:username,\r\n\t\t\t\t\tphone=:phone, \r\n\t\t\t\t\temail=:email \r\n\t\t\t\t\tWHERE id=:con_id";
     $stmt = $db->prepare($sql);
     $stmt->bindValue(':username', $username);
     $stmt->bindValue(':phone', $phone);
     $stmt->bindValue(':email', $email);
     $stmt->bindValue(':con_id', $con_id);
     return $stmt->execute();
 }
開發者ID:nixwins,項目名稱:test_task,代碼行數:11,代碼來源:contact_model.php

示例5: __construct

 public function __construct($x, $y)
 {
     $db_handle = DBConnect::getInstance();
     $jaarJongeren = new aantalJongeren($db_handle);
     $jaar = $jaarJongeren->showJaren();
     //        $laatsteDrieJaren = array_slice($jaar, 2,3);
     $this->xAx_Points = $jaar;
     $aantalJongeren = new JeugdZorgProvincie($db_handle);
     $percentageJongeren = $aantalJongeren->showPercentageNieuweClienten();
     //$percentageLaatsteDrieJaren = array_slice($percentageJongeren, 2,3);
     $this->yAx_Points = $percentageJongeren;
 }
開發者ID:Mwalima,項目名稱:databank,代碼行數:12,代碼來源:RegressionJeugdZorgProvincie.php

示例6: __construct

 public function __construct($x, $y)
 {
     $db_handle = DBConnect::getInstance();
     $jaarJongeren = new aantalJongeren($db_handle);
     $jaar = $jaarJongeren->showJaren();
     // $laatsteDrieJaren = array_slice($jaar, 2,3);
     $this->xAx_Points = $jaar;
     $verhoudingen = new ProcentueleVerhoudingen($db_handle);
     $percentageJongeren = $verhoudingen->showPercentagenieuweClientenJeugdGGZ();
     //$percentageLaatsteDrieJaren = array_slice($percentageJongeren, 2,3);
     $percentageLaatsteDrieJaren = $percentageJongeren;
     //var_dump($percentageLaatsteDrieJaren);
     $this->yAx_Points = $percentageLaatsteDrieJaren;
 }
開發者ID:Mwalima,項目名稱:databank,代碼行數:14,代碼來源:RegressieNieuweClientenCategorieJeugdGGZ.php

示例7: __construct

 public function __construct($x, $y)
 {
     $db_handle = DBConnect::getInstance();
     $aantalJongeren = new aantalJongeren($db_handle);
     $jaar = $aantalJongeren->showJaren();
     $this->xAx_Points = $jaar;
     $var_array = $_POST['arrayAantalNieuweClienten'];
     foreach ($var_array as $key => $array) {
     }
     for ($i = 0; $i <= count($var_array); $i++) {
         if ($var_array[$i] == 0) {
         }
     }
     array_splice($var_array, $var_array[$i], 1);
     $this->yAx_Points = $var_array;
 }
開發者ID:Mwalima,項目名稱:databank,代碼行數:16,代碼來源:RegressionNieuweClientenGemeente.php

示例8: __construct

 public function __construct($x, $y)
 {
     $db_handle = DBConnect::getInstance();
     $jaarJongeren = new aantalJongeren($db_handle);
     $jaar = $jaarJongeren->showJaren();
     $this->xAx_Points = $jaar;
     //verwijder alle elementen die geen waarde of een ander datatype hebben
     $var_array = $_POST['arrayPercentage'];
     foreach ($var_array as $key => $array) {
     }
     for ($i = 0; $i <= count($var_array); $i++) {
         if ($var_array[$i] == 0) {
         }
     }
     array_splice($var_array, $var_array[$i], 1);
     $this->yAx_Points = $var_array;
 }
開發者ID:Mwalima,項目名稱:databank,代碼行數:17,代碼來源:RegressionPercentageNieuweClientenGemeente.php

示例9: getAantalJongerenRiz

 public function getAantalJongerenRiz()
 {
     include_once "../PrognoseCreator/DBConnection.php";
     include_once "../PrognoseCreator/aantalJongeren.php";
     $db_handle = DBConnect::getInstance();
     $aantalJongeren = new aantalJongeren($db_handle);
     $sqlJaar = "SELECT Jeugd_AantalJongerenPerRegio.totaal FROM Jeugd_AantalJongerenPerRegio Order By jaar ";
     $stmt = $db_handle->prepare($sqlJaar);
     $stmt->execute();
     $result = $stmt->fetchAll(PDO::FETCH_COLUMN);
     return $result;
 }
開發者ID:Mwalima,項目名稱:databank,代碼行數:12,代碼來源:RegioIndelingRiz.php

示例10: RizzFuncties

         classes: 'ui-tooltip-blue ui-tooltip-shadow'
	},
    position: { 
      target: 'event' 
    }
	});
});

</script>
<?php 
include '../scripts/log_in.php';
require_once 'report_functions.php';
require_once 'report_header.php';
echo "<div id=toelichting></div>";
require_once '../PrognoseCreatorGemeenten/DBConnection.php';
$db_handle = DBConnect::getInstance();
$report_tab2 = new RizzFuncties($db_handle);
echo "<h2 class=top>huidige indicaties naar specialistische jeugdhulp</h2>";
//tabel en headers
$table_title = 'zorgvorm';
$table_header = $report_tab2->get_table_headers($table_title, $cbs, $regio, $cbs2, $regio2);
echo $table_header;
$bron[] = $report_tab2->getsource(2968);
$nr = 2968;
$oms = 'awbz en zorgverzekeringswet';
$eindjaar = true;
$col = 'val0';
$jaar = false;
$table_row = $report_tab2->get_data_abs($cbs, $nr, $oms, $regio, $cbs2, $regio2, $eindjaar, $col, $jaar);
echo $table_row;
$oms = 'jeugd en opvoedhulp ambulant';
開發者ID:Mwalima,項目名稱:databank,代碼行數:31,代碼來源:report_tab2.php

示例11: __construct

 function __construct()
 {
     if (!$this->_connectionObject) {
         $this->_connectionObject = DBConnect::getInstance();
     }
 }
開發者ID:jeetparikh,項目名稱:recruit-plus,代碼行數:6,代碼來源:RecruitAbstract.php


注:本文中的DBConnect::getInstance方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。