2 * Copyright (C) 2010 Ixonos Plc.
3 * Copyright (C) 2011-2013 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 : OrmSqlException
36 TrackInsertException(const QString& text) : OrmSqlException(text) {}
42 query.prepare("INSERT INTO " + sTableName + " (" + CONFERENCEID + "," + NAME + ")" + " VALUES " + "(\"" + QString::number(conferenceid()) + "\",\"" + name() + "\")");
45 throw TrackInsertException("Exec Error");
47 QVariant variant = query.lastInsertId();
48 if (variant.isValid())
49 return variant.toInt();
51 throw TrackInsertException("Last Insert Id Error");
54 Track Track::retrieveByName(int conferenceid, QString name)
59 + QString("WHERE %1.xid_conference = :xid_conference and %1.name = :name").arg(sTableName));
60 query.bindValue(":xid_conference", conferenceid);
61 query.bindValue(":name", name);
62 return loadOne(query);
65 QList<Track> Track::getAll()
68 query.prepare(selectQuery());
72 Track Track::retrieve(int id)
75 query.prepare(selectQuery()
76 + QString("WHERE %1.id = :id").arg(sTableName));
77 query.bindValue(":id", id);
78 return loadOne(query);
81 QString Track::retrieveTrackName(int id)
83 Track track = retrieve(id);