n
Сәуір 30, 2019, 11:47 Т.Қ.

Architecture Model / View

Hello everyone
I am new here so please forgive my language differences.
I am working on a learner note management software. I created a database in my software but I am stuck at the level of the information view of the database.
Here is the code

Fencene.h

  1. #ifndef FENCENE_H
  2. #define FENCENE_H
  3.  
  4. #include <QObject>
  5. #include <QWidget>
  6. #include <QGridLayout>
  7. #include <QComboBox>
  8. #include <QPushButton>
  9. #include <QFormLayout>
  10. #include <QTextEdit>
  11. #include <QSpinBox>
  12. #include <QGroupBox>
  13. #include <QRadioButton>
  14. #include <QtSql/QSqlDatabase>
  15. #include <QMessageBox>
  16. #include <QtSql/QSqlTableModel>
  17. #include <QSqlQuery>
  18. #include "logindb.h"
  19.  
  20. namespace Ui {
  21. class FenCene;
  22. }
  23.  
  24. class FenCene : public QWidget
  25. {
  26. Q_OBJECT
  27.  
  28. public:
  29. explicit FenCene(QWidget *parent = nullptr, LoginDB *login = nullptr);
  30. ~FenCene();
  31.  
  32. private:
  33. Ui::FenCene *ui;
  34. // QSqlDatabase *db; //for my database.
  35. LoginDB *login;
  36. // QSqlTableModel *model; //join table and database
  37. QSqlQueryModel *model; //My problem is that I want to display some information from the SQLITE Database in view # 1.
  38.  
  39.  
  40. public slots:
  41. void newfiledb(); // Connected to NouveauDialog in FenPrincipale.cpp
  42. };
  43.  
  44. #endif // FENCENE_H
  45.  

fencene.cpp

  1. #include "fencene.h"
  2. #include "ui_fencene.h"
  3. #include <QDir>
  4. #include <QDebug>
  5. #include <QSqlRelationalTableModel>
  6.  
  7. FenCene::FenCene(QWidget *parent, LoginDB *loginDB) :
  8. QWidget(parent),
  9. ui(new Ui::FenCene),
  10. login(loginDB)
  11. {
  12. ui->setupUi(this);
  13. }
  14.  
  15.  
  16. FenCene::~FenCene()
  17. {
  18. delete ui;
  19. }
  20.  
  21. void FenCene::newfiledb()
  22. {
  23. /*QString path = QDir::homePath() + "/CEN.db";*/ // Home-Directory of User + Name of Database File
  24. // We maybe can create a subfolder in HomeDir and put .db file there later.
  25.  
  26. // qDebug() << path; // Output in Console to check Path to DB-File
  27.  
  28. if(login->conOpen())
  29. {
  30. QSqlQuery query(login->db);
  31. query.exec("CREATE TABLE IF NOT EXISTS Student "
  32. "(id INTEGER PRIMARY KEY, "
  33. "name VARCHAR(30), "
  34. "prename VARCHAR(50), "
  35. "sex VARCHAR(1), "
  36. "classID INTEGER, "
  37. "FOREIGN KEY(classID) REFERENCES Class)");
  38. query.exec("INSERT INTO Student VALUES(NULL, 'Name0', 'Prenom0', 'M', 0)");
  39. query.exec("INSERT INTO Student VALUES(NULL, 'Name1', 'Prenom1', 'F', 0)");
  40. query.exec("INSERT INTO Student VALUES(NULL, 'Name2', 'Prenom2', 'M', 0)");
  41.  
  42.  
  43. query.exec("CREATE TABLE IF NOT EXISTS Class " //The list of classes is in Qnouveaudialogue.ui
  44. "(id INTEGER PRIMARY KEY, " //The name of a class is: choice (combox2) + choice (combox4) + choice (combox5).
  45. "name VARCHAR(20), " //Example: 6èmeMC1.
  46. "classteacher INTEGER, "
  47. "FOREIGN KEY(classteacher) REFERENCES Teacher)");
  48. query.exec("INSERT INTO Class VALUES(NULL, '6èmeMC1', 0)");
  49. query.exec("INSERT INTO Class VALUES(NULL, '6èmeMC1', 0)");
  50. query.exec("INSERT INTO Class VALUES(NULL, '6èmeMC1', 1)");
  51.  
  52.  
  53. query.exec("CREATE TABLE IF NOT EXISTS Teacher" //I suggested that the teacher's name not be in the database.
  54. "(id INTEGER PRIMARY KEY, " //It's useless but I respect your instructions in the code so I put it in it.
  55. "name VARCHAR(30), "
  56. "prename VARCHAR(50), "
  57. "sex VARCHAR(1))");
  58. query.exec("INSERT INTO teacher VALUES(NULL, 'NomTeacher0', 'PrenomTeacher0', 'M')");
  59. query.exec("INSERT INTO teacher VALUES(NULL, 'NomTeacher1', 'PrenomTeacher1', 'M')");
  60. query.exec("INSERT INTO teacher VALUES(NULL, 'NomTeacher2', 'PrenomTeacher2', 'M')");
  61.  
  62.  
  63. query.exec("CREATE TABLE IF NOT EXISTS Course" //(0 for Science, 1 for Litterature, 2 for Autres)
  64. "(id INTEGER PRIMARY KEY, "
  65. "name VARCHAR(30), "
  66. "groupID INTEGER, "
  67. "teacherID INTEGER, "
  68. "FOREIGN KEY(groupID) REFERENCES CourseGroup, "
  69. "FOREIGN KEY(teacherID) REFERENCES Teacher)");
  70. query.exec("INSERT INTO Course VALUES(NULL, 'CommunicationEcrite', 0, 0)"); //The list of course are in the Qnouveaudialogue
  71. query.exec("INSERT INTO Course VALUES(NULL, 'Lecture', 1, 0)"); //This is the combox 2
  72. query.exec("INSERT INTO Course VALUES(NULL, 'Anglais', 1, 0)");
  73. query.exec("INSERT INTO Course VALUES(NULL, 'Espagnol', 1, 0)");
  74. query.exec("INSERT INTO Course VALUES(NULL, 'Allemand', 1, 0)");
  75. query.exec("INSERT INTO Course VALUES(NULL, 'Arabe', 1, 0)");
  76. query.exec("INSERT INTO Course VALUES(NULL, 'Histoiregeographie', 1, 0)");
  77. query.exec("INSERT INTO Course VALUES(NULL, 'Philosophie', 1, 0)");
  78. query.exec("INSERT INTO Course VALUES(NULL, 'Mathematiques', 0, 0)");
  79. query.exec("INSERT INTO Course VALUES(NULL, 'PCT', 0, 0)");
  80. query.exec("INSERT INTO Course VALUES(NULL, 'SVT', 0, 0)");
  81. query.exec("INSERT INTO Course VALUES(NULL, 'EPS', 2, 0)");
  82. query.exec("INSERT INTO Course VALUES(NULL, 'Conduite', 1, 0)");
  83.  
  84.  
  85. query.exec("CREATE TABLE IF NOT EXISTS Coursegroup"
  86. "(id INTEGER PRIMARY KEY, "
  87. "name VARCHAR(20))");
  88. query.exec("INSERT INTO Coursegroup VALUES(NULL, 'Science')");
  89. query.exec("INSERT INTO Coursegroup VALUES(NULL, 'Littérature')");
  90. query.exec("INSERT INTO Coursegroup VALUES(NULL, 'Autres')");
  91.  
  92.  
  93. query.exec("CREATE TABLE IF NOT EXISTS Grade" // What do I have to put in this table? // This is the table which stores the students' grades
  94. "(id INTEGER PRIMARY KEY, " // Its connected to student (by the student ID) and the course (by the courseID)
  95. "studentID INTEGER, "
  96. "courseID INTEGER, "
  97. "gradeName VARCHAR(10), " // the "Name" of the grade is for "Notei1-5" and "Noted1-2", so you can save, which grade it is
  98. "grade INTEGER, " // the grade value
  99. "comment VARCHAR(100), "
  100. "FOREIGN KEY(studentID) REFERENCES Student, "
  101. "FOREIGN KEY(courseID) REFERENCES Course)"); // additional / optional comment from teacher on this grade / note
  102. query.exec("INSERT INTO Grade VALUES(NULL, 0, 3, 'Test', 2, 'Comment')"); // ID N°3 FOR Espagnol
  103. query.exec("INSERT INTO Grade VALUES(NULL, 0, 3, 'Test2', 3, 'Comment')");
  104. query.exec("INSERT INTO Grade VALUES(NULL, 0, 3, 'Test3', 4, 'Comment5')");
  105.  
  106.  
  107. //// We need SQL_RelationalTableModel later to display data correctly (JOIN Tables)
  108. //// QSqlRelationalTableModel *model = new QSqlRelationalTableModel(this);
  109.  
  110. model = new QSqlQueryModel(this);
  111. query.exec("SELECT * FROM Student");
  112. model->setQuery(query);
  113. ui->tableView->setModel(model);
  114. }
  115.  
  116. // Next I will change this function here. At the moment it still creates new tables every time and inserts our test data.
  117.  
  118. // dont need to close in every function. DB can be connected until we dont want to view / select / delete or insert data
  119. // login->conClose();
  120. }
  121.  
  122.  
  123.  
  124.  
  125.  

Here is the image of the view I want to display.
The view

I specify that the columns "Moy Interro", "Moy Sem", "Moy Coef", "Mention" will be empty and are not stcoké in the database.
Thanks for your help.

2

Ол саған ұнайды ма? Әлеуметтік желілерде бөлісіңіз!

3
Evgenii Legotckoi
  • Мамыр 1, 2019, 2:48 Т.Қ.

Hello.

It is a little bit difficult table. I can try to advice direction in this case.

Did you see this example https://evileg.com/en/post/67/

And can you show result of this code?

  1. model = new QSqlQueryModel(this);
  2. query.exec("SELECT * FROM Student");
  3. model->setQuery(query);
  4. ui->tableView->setModel(model);

I mean picture.

    n
    • Мамыр 2, 2019, 4:52 Т.Қ.

    Hello Евгений Легоцкой
    Thank you for your reply.
    I would like to understand. So I have to create the tableview in Qt designer? And after the connected to the database?

    I will study the example that you have proposed tonight.
    Thanks again...
    Nafab

      Evgenii Legotckoi
      • Мамыр 9, 2019, 1:29 Т.Қ.

      Yes, You can to create TableView in Qt Designer. Just find Table View object and add it to form. But you should add model to table view in c++ code.

      And yes, you can add table view and models after database connection.

        Пікірлер

        Тек рұқсаты бар пайдаланушылар ғана пікір қалдыра алады.
        Кіріңіз немесе Тіркеліңіз