-
Notifications
You must be signed in to change notification settings - Fork 2
/
RaceInfoForm.cs
58 lines (53 loc) · 1.7 KB
/
RaceInfoForm.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace M3U8_Downloader
{
public partial class RaceInfoForm : Form
{
private SQLiteHelper mySQLiteHelper;
public RaceInfoForm()
{
InitializeComponent();
Control.CheckForIllegalCrossThreadCalls = false;
mySQLiteHelper = new SQLiteHelper();
SQLiteHelper.SetConnectionString(System.AppDomain.CurrentDomain.BaseDirectory + "Data.db3", "");
}
private void RaceInfoForm_Load(object sender, EventArgs e)
{
this.StartPosition = FormStartPosition.CenterScreen;
InitForm();
}
private void InitForm()
{
try
{
string sql = "select * from raceinfo";
DataTable dt = null;
dt = mySQLiteHelper.ExecuteQuery(sql);
if (dt != null)
{
this.dataGridView1.AutoGenerateColumns = true;
this.dataGridView1.DataSource = dt;
}
string sql2 = "select * from RaceFailed";
DataTable dt2 = null;
dt2 = mySQLiteHelper.ExecuteQuery(sql2);
if (dt != null)
{
this.dataGridView2.AutoGenerateColumns = true;
this.dataGridView2.DataSource = dt2;
}
}
catch (Exception ex)
{
}
}
}
}