6 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Modèle d'accès à la base de données des Référentiels.
|
|
|
5 |
* Service concernant les tests
|
|
|
6 |
*
|
|
|
7 |
* @package Referentiel
|
|
|
8 |
* @category Php 5.2
|
|
|
9 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
10 |
* @copyright 2010 Tela-Botanica
|
|
|
11 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
|
|
|
12 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
|
|
|
13 |
* @version SVN: $Id$
|
|
|
14 |
*
|
|
|
15 |
*/
|
|
|
16 |
class TableStructureDao extends AppliModele {
|
|
|
17 |
const SERVICE = 'RefTableStructure';
|
|
|
18 |
|
|
|
19 |
/**
|
|
|
20 |
* Retourne l'ensemble des information sur les colonnes d'une table.
|
|
|
21 |
*
|
|
|
22 |
* @param string le nom de la table.
|
|
|
23 |
* @return array un tableau contenant les informations sur les colonnes de la table.
|
|
|
24 |
*/
|
|
|
25 |
public function getColonnes($table) {
|
|
|
26 |
$url = $this->url_jrest.self::SERVICE."/colonnes/$table";
|
|
|
27 |
$json = file_get_contents($url);
|
|
|
28 |
$donnees = json_decode($json, true);
|
|
|
29 |
return $donnees['colonnes'];
|
|
|
30 |
}
|
|
|
31 |
|
|
|
32 |
/**
|
|
|
33 |
* Retourne l'ensemble des information d'analyse de la structure d'une table.
|
|
|
34 |
*
|
|
|
35 |
* @param string le nom de la table.
|
|
|
36 |
* @return array un tableau contenant les informations de l'analyse de la table.
|
|
|
37 |
*/
|
|
|
38 |
public function getAnalyse($table) {
|
|
|
39 |
$url = $this->url_jrest.self::SERVICE."/analyse/$table";
|
|
|
40 |
$json = file_get_contents($url);
|
|
|
41 |
$donnees = json_decode($json, true);
|
|
|
42 |
return $donnees['analyses'];
|
|
|
43 |
}
|
|
|
44 |
}
|
|
|
45 |
?>
|