summaryrefslogtreecommitdiff
path: root/Aktywator/MySQLTournament.cs
blob: f745a91679c85975ac20c931d49624b45b1db499 (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
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 override string ToString()
        {
            return this.name + " [" + (this.type == Tournament.TYPE_PARY ? 'P' : 'T') + "]";
        }

        public static List<MySQLTournament> getTournaments()
        {
            List<MySQLTournament> list = new List<MySQLTournament>();
            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())
            {
                list.Add(new MySQLTournament(dbs.GetString(0), "dnazwa".Equals(dbs.GetString(1)) ? Tournament.TYPE_PARY : Tournament.TYPE_TEAMY));
            }
            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");
        }

    }
}