Пример #1
0
 /**
  * RÉCUPÉRATION d'entrée(s) de table SQL
  * @param STRING $table Le nom de la table SQL
  * @param OBJECT $pdoInstance Une instance de PDO préinitialisée (optionnel)
  */
 public function __construct($table = false, $pdoInstance = false)
 {
     if ($table == false) {
         throw new Exception("Infos::(__construct) : missing table name!");
     }
     Liste::__construct($pdoInstance);
     $this->setTable($table);
 }