-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmMain.cs
152 lines (121 loc) · 4.22 KB
/
FrmMain.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Speed.Data;
namespace ExportDbToFile
{
public partial class FrmMain : Form
{
int count;
DateTime date;
public FrmMain()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
panProgress.Visible = false;
panInput.Enabled = true;
cboConnections.DisplayMember = "Name";
cboConnections.Sorted = true;
cboConnections.DataSource = Settings.Load();
cboExportType.SelectedIndex = 1;
Show();
txtDirectory.Text = @"c:\temp";
#if DEBUG
txtSelect.Text =
@"select
C.CHAVE_CTE || '.pdf',
A.ARQUIVO_PDF
from
translogic.cte c inner join cte_arquivo a on a.id_cte = c.id_cte
where
c.data_cte between to_Date('01/01/2018 00:00:00','dd/mm/yyyy hh24:mi:ss') and to_Date('31/12/2018 23:59:59','dd/mm/yyyy hh24:mi:ss')
AND C.SITUACAO_ATUAL = 'AUT'
";
txtDirectory.Text = @"D:\temp\ExportCtes";
//btnExportar_Click(null, null);
#endif
}
private void btnExportar_Click(object sender, EventArgs e)
{
Program.RunSafe(this, () =>
{
if (cboConnections.SelectedIndex == -1)
{
throw new Exception("Selecione a conexão");
}
if (txtSelect.Text.Trim() == string.Empty)
{
throw new Exception("Entre o SELECT");
}
if (txtDirectory.Text.Trim() == string.Empty)
{
throw new Exception("Entre o Diretório");
}
if (!Program.Confirm("Confirma a exportação?"))
{
return;
}
});
worker.RunWorkerAsync();
}
private void picHelp_Click(object sender, EventArgs e)
{
using (var f = new FrmHelp())
f.ShowDialog();
}
private void btnNewConnection_Click(object sender, EventArgs e)
{
Program.RunSafe(this, () =>
{
using (var f = new FrmConnections())
f.ShowDialog();
var cur = cboConnections.SelectedItem;
cboConnections.DataSource = null;
var connections = Settings.Load();
cboConnections.DisplayMember = "Name";
cboConnections.DataSource = connections;
if (cur != null && connections.Any())
{
cboConnections.SelectedItem = cur;
}
});
}
private void btnCancel_Click(object sender, EventArgs e)
{
worker.CancelAsync();
}
private void worker_DoWork(object sender, DoWorkEventArgs e)
{
panProgress.Visible = true;
panInput.Enabled = false;
var connection = cboConnections.SelectedItem as DbConnection;
string dir = txtDirectory.Text.Trim();
if (dir == string.Empty)
throw new Exception("Entre o diretório");
if (!Directory.Exists(dir))
Directory.CreateDirectory(dir);
string select = txtSelect.Text.Trim();
var exp = new ExportXml();
date = DateTime.Now;
using (var db = Sys.NewDb(connection.GetProviderType(), connection.ConnectionString))
{
count = exp.Export(db, worker, dir, select, cboExportType.SelectedIndex == 1, !chkNotExportNulls.Checked, lblMessage, txtExtension.Text, out count);
}
}
private void worker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
panProgress.Visible = false;
panInput.Enabled = true;
string msg = "Exportados " + count + " arquivos. Tempo: " + DateTime.Now.Subtract(date);
Program.ShowInformation(this, msg);
}
}
}