コード例 #1
0
ファイル: Mapper.class.php プロジェクト: noxa02/REST_ANNONCE
 /**
  * 
  * @return PDOObject Initialize a PDO object
  */
 public function connect()
 {
     if (!is_null($this->statement)) {
         return $this->statement;
     }
     return $this->statement = PDO_Mysql::getInstance();
 }
コード例 #2
0
 public function __construct()
 {
     $this->SQL = PDO_Mysql::getInstance();
 }
コード例 #3
0
ファイル: Member.class.php プロジェクト: noxa02/Annonces
 public function __construct()
 {
     $this->SQL = PDO_Mysql::getInstance();
     $this->_login = $this->_password = '';
     $this->_name = $this->_firstname = $this->_email = '';
 }