blob: b46740b17d59cf0fa1a34cd75b38464e007da71c (
plain)
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
|
using System;
using System.Collections.Generic;
using System.Text;
using MySql.Data.MySqlClient;
using data = MySql.Data.MySqlClient.MySqlDataReader;
namespace Aktywator
{
public class Tournament
{
private string _name;
public string name
{
get { return _name; }
}
private int _type; // 0-unknown, 1-Pary, 2-Teamy
public int type
{
get { return _type; }
}
public MySQL mysql;
public Tournament(string name)
{
this._name = name;
mysql = new MySQL(name);
recognizeType();
}
private void recognizeType()
{
if ((mysql.selectOne("SHOW TABLES LIKE 'admin'") == "admin")
&& (mysql.selectOne("SHOW FIELDS IN admin LIKE 'dnazwa'") == "dnazwa")
&& (mysql.selectOne("SHOW TABLES LIKE 'zawodnicy'") == "zawodnicy"))
_type = 1;
else if ((mysql.selectOne("SHOW TABLES LIKE 'admin'") == "admin")
&& (mysql.selectOne("SHOW FIELDS IN admin LIKE 'teamcnt'") == "teamcnt")
&& (mysql.selectOne("SHOW TABLES LIKE 'players'") == "players"))
_type = 2;
else _type = 0;
}
public override string ToString()
{
return this.name + " [" + (this.type == 1 ? 'P' : 'T') + "]";
}
public static List<Tournament> getTournaments()
{
List<Tournament> list = new List<Tournament>();
MySQL c = new MySQL("");
data dbs = c.select("SHOW DATABASES;");
while (dbs.Read())
{
Tournament t = new Tournament(dbs.GetString(0));
if (t.type > 0)
list.Add(t);
t.mysql.close();
}
return list;
}
public string getSectionsNum()
{
if (type == 1)
return mysql.selectOne("SELECT COUNT(DISTINCT seknum) FROM sektory;");
else
return "1";
}
public string getTablesNum()
{
if (type == 1)
return mysql.selectOne("SELECT COUNT(*) FROM sektory;");
else
return mysql.selectOne("SELECT teamcnt FROM admin;");
}
}
}
|