-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmConnection.cs
93 lines (79 loc) · 2.61 KB
/
FrmConnection.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
using Speed.Data;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ExportDbToFile
{
public partial class FrmConnection : Form
{
DbConnection Connection;
public FrmConnection()
{
InitializeComponent();
}
private void FrmConnection_Load(object sender, EventArgs e)
{
//LoadData();
}
void LoadData()
{
if (Connection == null)
{
cboDbType.Items.Clear();
cboDbType.Items.Add(EnumDbProviderType.Oracle.ToString());
cboDbType.Items.Add(EnumDbProviderType.SqlServer.ToString());
cboDbType.Items.Add(EnumDbProviderType.Access.ToString());
cboDbType.Items.Add(EnumDbProviderType.MySql.ToString());
cboDbType.Items.Add(EnumDbProviderType.PostgreSQL.ToString());
cboDbType.Sorted = true;
Connection = new DbConnection();
SetValues();
}
}
void SetValues()
{
txtName.Text = Connection.Name;
txtConnectionString.Text = Connection.ConnectionString;
cboDbType.SelectedIndex = -1;
if (Connection.ProviderType != null)
{
cboDbType.SelectedItem = Connection.ProviderType;
}
}
void GetValues()
{
Connection.Name = txtName.Text.Trim();
Connection.ConnectionString = txtConnectionString.Text.Trim();
Connection.ProviderType = cboDbType.SelectedItem.ToString();
}
private void btnOk_Click(object sender, EventArgs e)
{
if (cboDbType.SelectedIndex == 0 || string.IsNullOrWhiteSpace(txtName.Text.Trim()) || string.IsNullOrWhiteSpace(txtConnectionString.Text.Trim()))
{
Program.ShowError("Todos os campos são obrigatórios");
return;
}
DialogResult = DialogResult.OK;
}
public static DialogResult ShowDialog(DbConnection connection)
{
using (var f = new FrmConnection())
{
f.LoadData();
f.Connection = connection;
f.SetValues();
if (f.ShowDialog() == DialogResult.OK)
{
f.GetValues();
f.DialogResult = DialogResult.OK;
}
return f.DialogResult;
}
}
}
}