2 * Copyright (C) 2010 Ixonos Plc.
3 * Copyright (C) 2011-2021 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();
44 QString("INSERT INTO %1 (%2, %3) VALUES (:xid_conference, :name)")
45 .arg(sTableName, CONFERENCEID, NAME));
46 query.bindValue(":xid_conference", conferenceid());
47 query.bindValue(":name", trackname);
50 throw TrackInsertException(
51 "Inserting track '" + trackname + "' into database failed: " +
52 query.lastError().text());
54 QVariant variant = query.lastInsertId();
55 if (variant.isValid())
56 return variant.toInt();
58 throw TrackInsertException("Last Insert Id Error");
61 Track Track::retrieveByName(int conferenceid, QString name)
66 + QString("WHERE %1.xid_conference = :xid_conference and %1.name = :name").arg(sTableName));
67 query.bindValue(":xid_conference", conferenceid);
68 query.bindValue(":name", name);
69 return loadOne(query);
72 QList<Track> Track::getAll()
75 query.prepare(selectQuery());
79 Track Track::retrieve(int id)
82 query.prepare(selectQuery()
83 + QString("WHERE %1.id = :id").arg(sTableName));
84 query.bindValue(":id", id);
85 return loadOne(query);
88 QString Track::retrieveTrackName(int id)
90 Track track = retrieve(id);