blob: 3bc9accce35b6275847c48a92cf0faf83e509a75 (
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 MySQLTournament : Tournament
{
public MySQL mysql;
public MySQLTournament(string name, int type)
{
this._name = name;
this._type = type;
if (this._type < Tournament.TYPE_UNKNOWN || this._type > Tournament.TYPE_RRB)
{
this._type = Tournament.TYPE_UNKNOWN;
}
mysql = new MySQL(name);
}
public static string getLabel(string name, int type)
{
return name + " [" + (type == Tournament.TYPE_PARY ? 'P' : 'T') + "]";
}
public override string ToString()
{
return MySQLTournament.getLabel(this.name, this.type);
}
public static List<TournamentListItem> getTournaments()
{
List<TournamentListItem> list = new List<TournamentListItem>();
MySQL c = new MySQL("");
data dbs = c.select("SELECT TABLE_SCHEMA, COLUMN_NAME FROM information_schema.COLUMNS WHERE TABLE_NAME = 'admin' AND COLUMN_NAME IN ('dnazwa', 'teamcnt') ORDER BY TABLE_SCHEMA;");
while (dbs.Read())
{
TournamentListItem item = new TournamentListItem();
item.Name = dbs.GetString(0);
item.Type = "dnazwa".Equals(dbs.GetString(1)) ? Tournament.TYPE_PARY : Tournament.TYPE_TEAMY;
item.Label = MySQLTournament.getLabel(item.Name, item.Type);
list.Add(item);
}
dbs.Close();
return list;
}
override internal void setup()
{
if (this.mysql != null)
{
this.mysql.close();
this.mysql.connect();
}
}
override internal string getName()
{
return this.name;
}
override public string getSectionsNum()
{
throw new NotImplementedException("Don't call this method on generic class instance");
}
override public string getTablesNum()
{
throw new NotImplementedException("Don't call this method on generic class instance");
}
override internal string getTypeLabel()
{
throw new NotImplementedException("Don't call this method on generic class instance");
}
}
}
|