2 * Copyright (C) 2010 Ixonos Plc.
4 * This file is part of fosdem-schedule.
6 * fosdem-schedule is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation, either version 2 of the License, or (at your option)
11 * fosdem-schedule is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along with
17 * fosdem-schedule. If not, see <http://www.gnu.org/licenses/>.
19 #include "conference.h"
20 #include "../sql/sqlengine.h"
22 QSqlRecord const Conference::sColumns = Conference::toRecord(QList<QSqlField>()
23 << QSqlField("id", QVariant::Int)
24 << QSqlField("title", QVariant::String)
25 << QSqlField("subtitle", QVariant::String)
26 << QSqlField("venue", QVariant::String)
27 << QSqlField("city", QVariant::String)
28 << QSqlField("start", QVariant::DateTime)
29 << QSqlField("end", QVariant::DateTime)
30 << QSqlField("days", QVariant::Int)
31 << QSqlField("day_change", QVariant::Int)
32 << QSqlField("timeslot_duration", QVariant::Int)
33 << QSqlField("active", QVariant::Bool)
34 << QSqlField("url", QVariant::String));
36 QString const Conference::sTableName = QString("conference");
38 Conference Conference::getById(int id)
41 query.prepare(selectQuery() + "WHERE id = :id");
42 query.bindValue(":id", id);
43 return loadOne(query);
46 QList<Conference> Conference::getAll()
49 query.prepare(selectQuery());
53 int Conference::activeConference()
56 QSqlQuery query("SELECT id FROM conference WHERE active = 1");
59 // TODO: change it so that it will select somw existing ID
62 return query.record().value("id").toInt();
66 QSqlQuery query2("SELECT id FROM conference ORDER BY id");
68 return query2.record().value("id").toInt();
74 void Conference::deleteConference(int id)
76 SqlEngine::deleteConference(id);