Exemplo n.º 1
0
 private void BuildSchemaTree(string connectionString)
 {
     try
     {
         //dbSchemaPanel = new DbSchemaPanel(ref _currentUnit, ref _currentCslaObject, connectionString);
         _dbSchemaPanel = new DbSchemaPanel(_currentUnit, _currentCslaObject, connectionString);
         _dbSchemaPanel.BuildSchemaTree();
         _frmGenerator.DbSchemaPanel = _dbSchemaPanel;
         _frmGenerator.AddCtrlToMiddlePane(_dbSchemaPanel);
         _dbSchemaPanel.SetDbColumnsPctHeight(73);
         _dbSchemaPanel.SetDbTreeViewPctHeight(73);
     }
     catch (Exception e)
     {
         throw (e);
     }
 }