initialiserProjet('eflore'); $cmd = $this->getParametre('a'); switch ($cmd) { case 'chargerTous' : $this->chargerStructureSql(); $this->chargerOntologies(); break; case 'chargerStructureSql' : $this->chargerStructureSql(); break; case 'chargerOntologies' : $this->chargerOntologies(); break; case 'supprimerTous' : $this->supprimerTous(); break; default : throw new Exception("Erreur : la commande '$cmd' n'existe pas!"); } } catch (Exception $e) { $this->traiterErreur($e->getMessage()); } } private function chargerOntologies() { $chemin = Config::get('chemins.ontologies'); $table = Config::get('tables.ontologies'); $requete = "LOAD DATA INFILE '$chemin' ". "REPLACE INTO TABLE $table ". 'CHARACTER SET utf8 '. 'FIELDS '. " TERMINATED BY '\t' ". " ENCLOSED BY '\"' ". " ESCAPED BY '\\\' ". 'IGNORE 1 LINES'; $this->getBdd()->requeter($requete); } private function supprimerTous() { $requete = "DROP TABLE IF EXISTS eflore_meta, eflore_ontologies"; $this->getBdd()->requeter($requete); } } ?>