Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DbCreator/3.3/MainWindow.cs @ 6703

Last change on this file since 6703 was 6683, checked in by ascheibe, 13 years ago

#1233 replaced the CreateHiveDatabaseApplication HL App with a Windows Forms application

File size: 2.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.IO;
24using System.Windows.Forms;
25using HeuristicLab.Services.Hive.DataAccess;
26
27namespace HeuristicLab.Services.Hive.DbCreator {
28  public partial class MainWindow : Form {
29    public MainWindow() {
30      InitializeComponent();
31    }
32
33    private void btnCreate_Click(object sender, EventArgs e) {
34      if (!File.Exists(txtPath.Text)) {
35        MessageBox.Show("Please select a valid path to the database script.", "Hive Database Creator", MessageBoxButtons.OK, MessageBoxIcon.Error);
36      } else {
37        CreateDatabase(txtPath.Text);
38      }
39    }
40
41    private void btnChoosePath_Click(object sender, EventArgs e) {
42      OpenFileDialog dlg = new OpenFileDialog();
43      DialogResult result = dlg.ShowDialog();
44
45      if (result == System.Windows.Forms.DialogResult.OK) {
46        txtPath.Text = dlg.FileName;
47      } else {
48        txtPath.Clear();
49      }
50    }
51
52    private void CreateDatabase(string fileName) {
53      try {
54        using (var db = HiveDao.CreateContext()) {
55          if (db.DatabaseExists()) {
56            db.DeleteDatabase();
57          }
58          db.CreateDatabase();
59
60          using (var sr = new StreamReader(fileName)) {
61            var commands = sr.ReadToEnd().Split(new string[] { "GO\r" }, System.StringSplitOptions.RemoveEmptyEntries);
62            foreach (var cmd in commands) {
63              db.ExecuteCommand(cmd);
64            }
65          }
66          MessageBox.Show("Successfully created HeuristicLab.Hive database.");
67        }
68      }
69      catch (Exception ex) {
70        MessageBox.Show(String.Format("There was an error creating the database: {0} {1}", Environment.NewLine, ex.Message), "Hive Database Creator", MessageBoxButtons.OK, MessageBoxIcon.Error);
71      }
72    }
73  }
74}
Note: See TracBrowser for help on using the repository browser.