Skip to content
Snippets Groups Projects
Commit 45ddfc76 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Ne pas prendre en compte les colonnes cachées

parent ad89fcae
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ class SchemaService extends AbstractService
/* Récupération des colonnes des tableaux de bord */
if ($tables) {
$sql = "SELECT TABLE_NAME, COLUMN_NAME, NULLABLE FROM USER_TAB_COLS WHERE "
. "TABLE_NAME IN ('" . implode("','", array_keys($tables)) . "') ORDER BY COLUMN_ID";
. "TABLE_NAME IN ('" . implode("','", array_keys($tables)) . "') AND hidden_column = 'NO' ORDER BY COLUMN_ID";
$d = $this->query($sql, []);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment