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 |
|
---|
22 | using System;
|
---|
23 | using System.IO;
|
---|
24 | using System.Windows.Forms;
|
---|
25 | using HeuristicLab.Services.Hive.DataAccess;
|
---|
26 |
|
---|
27 | namespace 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 | }
|
---|