123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
-
- #include <QCoreApplication>
- #include <QDebug>
- #include <QSqlDatabase>
- #include <QSqlDriver>
- #include <QSqlError>
- #include <QSqlQuery>
- #include "calc.h"
- #include "dbpilots.h"
- #include <chrono>
- #include <QRandomGenerator>
- #include <QStandardPaths>
- class db
- {
- public:
- static void connect()
- {
- const QString DRIVER("QSQLITE");
- if(QSqlDatabase::isDriverAvailable(DRIVER))
- {
- QSqlDatabase db = QSqlDatabase::addDatabase(DRIVER);
-
-
-
- db.setDatabaseName("logbook.db");
- if(!db.open())
- qWarning() << "MainWindow::DatabaseConnect - ERROR: " << db.lastError().text();
- }
- else
- qWarning() << "MainWindow::DatabaseConnect - ERROR: no driver " << DRIVER << " available";
- }
- static void initexample()
- {
- QSqlQuery query("CREATE TABLE flights (id INTEGER PRIMARY KEY, date NUMERIC)");
- if(!query.isActive())
- qWarning() << "MainWindow::DatabaseInit - ERROR: " << query.lastError().text();
- }
- static void queryexamplenamedbinding()
- {
- QSqlQuery query;
-
-
- query.prepare("SELECT * from people WHERE name LIKE :name");
- query.bindValue(":name", "%Linus%");
- query.bindValue(":id",2);
- query.exec();
-
- if(query.first());
- else
- qDebug() << ("No entry found");
- query.previous();
- while (query.next()) {
- QString name = query.value(1).toString();
- int id = query.value(0).toInt();
- qDebug() << name << id;
- }
-
- }
-
-
- static QString RetreiveRegistration(QString tail_ID)
- {
- QString acftRegistration("");
- QSqlQuery query;
- query.prepare("SELECT registration FROM tails WHERE tail_id == ?");
- query.addBindValue(tail_ID.toInt());
- query.exec();
- if(query.first());
- else
- qDebug() << ("No Aircraft with this ID found");
- query.previous();
- while (query.next()) {
- acftRegistration.append(query.value(0).toString());
- }
- return acftRegistration;
- }
-
- static QStringList newAcftGetString(QString searchstring)
- {
- QStringList result;
- if(searchstring.length()<2){return result;}
- QSqlQuery query;
- query.prepare("SELECT registration, make, model, variant "
- "FROM aircraft "
- "INNER JOIN tails on tails.aircraft_ID = aircraft.aircraft_id "
- "WHERE tails.registration LIKE ?");
- searchstring.append("%"); searchstring.prepend("%");
- query.addBindValue(searchstring);
- query.exec();
- while(query.next())
- {
- result.append(query.value(0).toString() + " (" + query.value(1).toString() + "-" + query.value(2).toString() + "-" + query.value(3).toString() + ")");
- }
- qDebug() << "newAcftGetString: " << result.length() << result;
- return result;
- }
- static QString newAcftGetId(QString registration)
- {
- QString result;
- QSqlQuery query;
- query.prepare("SELECT tail_id "
- "FROM tails "
- "WHERE registration LIKE ?");
- registration.prepend("%"); registration.append("%");
- query.addBindValue(registration);
- query.exec();
- while(query.next())
- {
- result.append(query.value(0).toString());
- }
- qDebug() << "newAcftGetId: " << result;
- return result;
- }
- static QVector<QString> RetreiveAircraftTypeFromReg(QString searchstring)
-
- {
- QSqlQuery query;
- query.prepare("SELECT Name, iata, registration, tail_id "
- "FROM aircraft "
- "INNER JOIN tails on tails.aircraft_ID = aircraft.aircraft_id "
- "WHERE tails.registration LIKE ?");
-
- searchstring.prepend("%");
- searchstring.append("%");
- query.addBindValue(searchstring);
- query.exec();
- QVector<QString> result;
- if(query.first())
- {
- QString acType = query.value(0).toString();
- QString iataCode = query.value(1).toString();
- QString registration = query.value(2).toString();
- QString tail_id = query.value(3).toString();
-
-
- result.append(registration); result.append(acType);
- result.append(iataCode); result.append(tail_id);
- return result;
- }else
- {
- return result;
- }
- }
- static QStringList RetreiveAircraftMake(QString searchstring)
- {
- QStringList result;
- QSqlQuery query;
- query.prepare("SELECT make from aircraft WHERE make LIKE ?");
- searchstring.prepend("%"); searchstring.append("%");
- query.addBindValue(searchstring);
- query.exec();
- while(query.next())
- {
- result.append(query.value(0).toString());
- }
- qDebug() << "db::RetreiveAircraftMake says... Result:" << result;
- return result;
- }
- static QStringList RetreiveAircraftModel(QString make, QString searchstring)
- {
- QStringList result;
- QSqlQuery query;
- query.prepare("SELECT model FROM aircraft WHERE make = ? AND model LIKE ?");
- query.addBindValue(make);
- searchstring.prepend("%"); searchstring.append("%");
- query.addBindValue(searchstring);
- query.exec();
- while(query.next())
- {
- result.append(query.value(0).toString());
- qDebug() << "db::RetreiveAircraftModel says... Result:" << result;
- }
- return result;
- }
- static QStringList RetreiveAircraftVariant(QString make, QString model, QString searchstring)
- {
- QStringList result;
- QSqlQuery query;
- query.prepare("SELECT variant from aircraft WHERE make = ? AND model = ? AND variant LIKE ?");
- query.addBindValue(make);
- query.addBindValue(model);
- searchstring.prepend("%"); searchstring.append("%");
- query.addBindValue(searchstring);
- query.exec();
- while(query.next())
- {
- result.append(query.value(0).toString());
- qDebug() << "db::RetreiveAircraftVariant says... Result:" << result;
- }
- return result;
- }
- static QString RetreiveAircraftIdFromMakeModelVariant(QString make, QString model, QString variant)
- {
- QString result;
- QSqlQuery query;
- query.prepare("SELECT aircraft_id FROM aircraft WHERE make = ? AND model = ? AND variant = ?");
- query.addBindValue(make);
- query.addBindValue(model);
- query.addBindValue(variant);
- query.exec();
- if(query.first())
- {
- result.append(query.value(0).toString());
- qDebug() << "db::RetreiveAircraftIdFromMakeModelVariant: Aircraft found! ID# " << result;
- return result;
- }else
- {
- result = result.left(result.length()-1);
- result.append("0");
- qDebug() << "db::RetreiveAircraftIdFromMakeModelVariant: ERROR - no AircraftId found.";
- return result;
- }
- }
- static bool CommitTailToDb(QString registration, QString aircraft_id, QString company)
- {
- QSqlQuery commit;
- commit.prepare("INSERT INTO tails (registration, aircraft_id, company) VALUES (?,?,?)");
- commit.addBindValue(registration);
- commit.addBindValue(aircraft_id);
- commit.addBindValue(company);
- commit.exec();
- QString error = commit.lastError().text();
- if(error.length() < 0)
- {
- qDebug() << "db::CommitAircraftToDb:: SQL error:" << error;
- return false;
- }else
- {
- return true;
- }
- }
-
- static QVector<QString> SelectFlightDate(QString doft)
- {
- QSqlQuery query;
- if (doft == "ALL")
- {
- query.prepare("SELECT * FROM flights ORDER BY doft DESC, tofb ASC");
- qDebug() << "All flights selected";
- }else
- {
- query.prepare("SELECT * FROM flights WHERE doft = ? ORDER BY tofb ASC");
- query.addBindValue(doft);
- qDebug() << "Searching flights for " << doft;
- }
- query.exec();
- if(query.first());
- else
- {
- qDebug() << ("No flight with this date found");
- QVector<QString> flight;
- return flight;
- }
- query.previous();
- query.last();
- int numRows = query.at() + 1;
- query.first();
- query.previous();
- QVector<QString> flight(numRows * 9);
- int index = 0;
- while (query.next()) {
- QString id = query.value(0).toString();
- QString doft = query.value(1).toString();
- QString dept = query.value(2).toString();
- QString tofb = calc::minutes_to_string((query.value(3).toString()));
- QString dest = query.value(4).toString();
- QString tonb = calc::minutes_to_string((query.value(5).toString()));
- QString tblk = calc::minutes_to_string((query.value(6).toString()));
- QString pic = dbPilots::retreivePilotNameFromID(query.value(7).toString());
- QString acft = db::RetreiveRegistration(query.value(8).toString());
-
- flight[index] = id;
- ++index;
- flight[index] = doft;
- ++index;
- flight[index] = dept;
- ++index;
- flight[index] = tofb;
- ++index;
- flight[index] = dest;
- ++index;
- flight[index] = tonb;
- ++index;
- flight[index] = tblk;
- ++index;
- flight[index] = pic;
- ++index;
- flight[index] = acft;
- ++index;
- }
- return flight;
- }
- };
|