2 * Copyright (C) 2010 Ixonos Plc.
3 * Copyright (C) 2011-2017 Philipp Spitzer, gregor herrmann, Stefan Stahl
5 * This file is part of ConfClerk.
7 * ConfClerk is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation, either version 2 of the License, or (at your option)
12 * ConfClerk is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * ConfClerk. If not, see <http://www.gnu.org/licenses/>.
23 QString const Track::sTableName = QString("track");
24 int const Track::sTableColCount = 3;
25 const QString Track::CONFERENCEID = "xid_conference";
26 const QString Track::NAME = "name";
28 QSqlRecord const Track::sColumns = Track::toRecord(QList<QSqlField>()
29 << QSqlField("id", QVariant::Int)
30 << QSqlField(CONFERENCEID, QVariant::Int)
31 << QSqlField(NAME, QVariant::String));
33 class TrackInsertException : public OrmSqlException
36 TrackInsertException(const QString& text) : OrmSqlException(text) {}
42 QString trackname = name();
43 query.prepare("INSERT INTO " + sTableName + " (" + CONFERENCEID + "," + NAME + ")" + " VALUES " + "(\"" + QString::number(conferenceid()) + "\",\"" + trackname + "\")");
46 throw TrackInsertException("Inserting track '" + trackname + "' into database failed.");
48 QVariant variant = query.lastInsertId();
49 if (variant.isValid())
50 return variant.toInt();
52 throw TrackInsertException("Last Insert Id Error");
55 Track Track::retrieveByName(int conferenceid, QString name)
60 + QString("WHERE %1.xid_conference = :xid_conference and %1.name = :name").arg(sTableName));
61 query.bindValue(":xid_conference", conferenceid);
62 query.bindValue(":name", name);
63 return loadOne(query);
66 QList<Track> Track::getAll()
69 query.prepare(selectQuery());
73 Track Track::retrieve(int id)
76 query.prepare(selectQuery()
77 + QString("WHERE %1.id = :id").arg(sTableName));
78 query.bindValue(":id", id);
79 return loadOne(query);
82 QString Track::retrieveTrackName(int id)
84 Track track = retrieve(id);