Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Deleting row from QTableWidget and from Sqlite database
Forum Updated to NodeBB v4.3 + New Features

Deleting row from QTableWidget and from Sqlite database

Scheduled Pinned Locked Moved Solved General and Desktop
71 Posts 6 Posters 16.4k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • SGaistS Offline
    SGaistS Offline
    SGaist
    Lifetime Qt Champion
    wrote on last edited by
    #48

    Hi,

    Do you mean an entire column ?

    Interested in AI ? www.idiap.ch
    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

    R 1 Reply Last reply
    0
    • SGaistS SGaist

      Hi,

      Do you mean an entire column ?

      R Offline
      R Offline
      Risver
      wrote on last edited by
      #49

      @SGaist said in Deleting row from QTableWidget and from Sqlite database:

      Hi,

      Do you mean an entire column ?

      Hi, yes i mean all the cells that are in the column

      1 Reply Last reply
      0
      • SGaistS Offline
        SGaistS Offline
        SGaist
        Lifetime Qt Champion
        wrote on last edited by
        #50

        Yes, select the whole column and then use a loop to parse the selection.

        Interested in AI ? www.idiap.ch
        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

        R 1 Reply Last reply
        1
        • SGaistS SGaist

          Yes, select the whole column and then use a loop to parse the selection.

          R Offline
          R Offline
          Risver
          wrote on last edited by
          #51

          @SGaist
          Okay and can i replace the old data with new data ?

          JonBJ 1 Reply Last reply
          0
          • R Risver

            @SGaist
            Okay and can i replace the old data with new data ?

            JonBJ Online
            JonBJ Online
            JonB
            wrote on last edited by JonB
            #52

            @Risver
            What "new data", from where? Do you mean something like over-pasting a selected column's data with other data in the QTreeView UI? Do you mean updating all rows to change one column's data in the model and/or the SQL database? Programatically or by user interaction? Or what?

            R 1 Reply Last reply
            0
            • JonBJ JonB

              @Risver
              What "new data", from where? Do you mean something like over-pasting a selected column's data with other data in the QTreeView UI? Do you mean updating all rows to change one column's data in the model and/or the SQL database? Programatically or by user interaction? Or what?

              R Offline
              R Offline
              Risver
              wrote on last edited by Risver
              #53

              @JonB said in Deleting row from QTableWidget and from Sqlite database:

              @Risver
              What "new data", from where? Do you mean something like over-pasting a selected column's data with other data in the QTreeView UI? Do you mean updating all rows to change one column's data in the model and/or the SQL database? Programatically or by user interaction? Or what?

              I mean updating all rows to change one column's data in the model(not in SQL), I would like this to happen programatically.

              The passwords in database are encrypted, I want them to be decrypted when I open the application.

              JonBJ 1 Reply Last reply
              0
              • R Risver

                @JonB said in Deleting row from QTableWidget and from Sqlite database:

                @Risver
                What "new data", from where? Do you mean something like over-pasting a selected column's data with other data in the QTreeView UI? Do you mean updating all rows to change one column's data in the model and/or the SQL database? Programatically or by user interaction? Or what?

                I mean updating all rows to change one column's data in the model(not in SQL), I would like this to happen programatically.

                The passwords in database are encrypted, I want them to be decrypted when I open the application.

                JonBJ Online
                JonBJ Online
                JonB
                wrote on last edited by JonB
                #54

                @Risver
                The you must loop over each row, updating the column:

                for (int row = 0; row < querymodel->rowCount(); row++)
                    querymodel->setData(querymodel->index(row, someColumnNumber), someValue);
                

                Is that what you meant?

                R 1 Reply Last reply
                1
                • JonBJ JonB

                  @Risver
                  The you must loop over each row, updating the column:

                  for (int row = 0; row < querymodel->rowCount(); row++)
                      querymodel->setData(querymodel->index(row, someColumnNumber), someValue);
                  

                  Is that what you meant?

                  R Offline
                  R Offline
                  Risver
                  wrote on last edited by
                  #55

                  @JonB said in Deleting row from QTableWidget and from Sqlite database:

                  @Risver
                  The you must loop over each row, updating the column:

                  for (int row = 0; row < querymodel->rowCount(); row++)
                      querymodel->setData(querymodel->index(row, someColumnNumber), someValue);
                  

                  Is that what you meant?

                  Yes, thank you. But it is also changing the data in database.

                  JonBJ 1 Reply Last reply
                  0
                  • R Risver

                    @JonB said in Deleting row from QTableWidget and from Sqlite database:

                    @Risver
                    The you must loop over each row, updating the column:

                    for (int row = 0; row < querymodel->rowCount(); row++)
                        querymodel->setData(querymodel->index(row, someColumnNumber), someValue);
                    

                    Is that what you meant?

                    Yes, thank you. But it is also changing the data in database.

                    JonBJ Online
                    JonBJ Online
                    JonB
                    wrote on last edited by
                    #56

                    @Risver
                    Of course. If you change a QSqlTableModel's data it will end up updating the database. That's the point of it.

                    You need to think out what you do and do not want to update, when and why.

                    R 1 Reply Last reply
                    1
                    • JonBJ JonB

                      @Risver
                      Of course. If you change a QSqlTableModel's data it will end up updating the database. That's the point of it.

                      You need to think out what you do and do not want to update, when and why.

                      R Offline
                      R Offline
                      Risver
                      wrote on last edited by Risver
                      #57

                      @JonB
                      Now i'm using

                      ui->tableView->model()->setData(ui->tableView->model()->index(i, 3), passdecoded);
                      

                      But it's only work for first row.

                          for(int i = 0; i < table->rowCount(); i++)
                          {
                              QByteArray pass = ui->tableView->model()->data(ui->tableView->model()->index(i, 3)).toString().toUtf8();
                              pass = QByteArray::fromBase64(pass);
                              QString passdecoded = decoding(pass);
                              qDebug() << passdecoded;
                              ui->tableView->model()->setData(ui->tableView->model()->index(i, 3), passdecoded);
                          }
                      

                      Now i see its also changing the data in database...

                      JonBJ 1 Reply Last reply
                      0
                      • R Risver

                        @JonB
                        Now i'm using

                        ui->tableView->model()->setData(ui->tableView->model()->index(i, 3), passdecoded);
                        

                        But it's only work for first row.

                            for(int i = 0; i < table->rowCount(); i++)
                            {
                                QByteArray pass = ui->tableView->model()->data(ui->tableView->model()->index(i, 3)).toString().toUtf8();
                                pass = QByteArray::fromBase64(pass);
                                QString passdecoded = decoding(pass);
                                qDebug() << passdecoded;
                                ui->tableView->model()->setData(ui->tableView->model()->index(i, 3), passdecoded);
                            }
                        

                        Now i see its also changing the data in database...

                        JonBJ Online
                        JonBJ Online
                        JonB
                        wrote on last edited by
                        #58

                        @Risver
                        Read https://doc.qt.io/qt-5/qsqltablemodel.html#submitAll, https://doc.qt.io/qt-5/qsqltablemodel.html#EditStrategy-enum and https://doc.qt.io/qt-5/qsqltablemodel.html#setEditStrategy, and check what yours currently is.

                        R 1 Reply Last reply
                        0
                        • JonBJ JonB

                          @Risver
                          Read https://doc.qt.io/qt-5/qsqltablemodel.html#submitAll, https://doc.qt.io/qt-5/qsqltablemodel.html#EditStrategy-enum and https://doc.qt.io/qt-5/qsqltablemodel.html#setEditStrategy, and check what yours currently is.

                          R Offline
                          R Offline
                          Risver
                          wrote on last edited by
                          #59

                          @JonB said in Deleting row from QTableWidget and from Sqlite database:

                          @Risver
                          Read https://doc.qt.io/qt-5/qsqltablemodel.html#submitAll, https://doc.qt.io/qt-5/qsqltablemodel.html#EditStrategy-enum and https://doc.qt.io/qt-5/qsqltablemodel.html#setEditStrategy, and check what yours currently is.

                          I'm not sure, before i used setEditStrategy() only the first row was changed, when i used OnFieldChange, all was changed but it was applied to database, when i used OnRowChange and OnManualSubmit only the last row was changed.

                          JonBJ 1 Reply Last reply
                          0
                          • R Risver

                            @JonB said in Deleting row from QTableWidget and from Sqlite database:

                            @Risver
                            Read https://doc.qt.io/qt-5/qsqltablemodel.html#submitAll, https://doc.qt.io/qt-5/qsqltablemodel.html#EditStrategy-enum and https://doc.qt.io/qt-5/qsqltablemodel.html#setEditStrategy, and check what yours currently is.

                            I'm not sure, before i used setEditStrategy() only the first row was changed, when i used OnFieldChange, all was changed but it was applied to database, when i used OnRowChange and OnManualSubmit only the last row was changed.

                            JonBJ Online
                            JonBJ Online
                            JonB
                            wrote on last edited by
                            #60

                            @Risver This is over to you now.

                            R 1 Reply Last reply
                            0
                            • JonBJ JonB

                              @Risver This is over to you now.

                              R Offline
                              R Offline
                              Risver
                              wrote on last edited by
                              #61

                              @JonB said in Deleting row from QTableWidget and from Sqlite database:

                              @Risver This is over to you now.

                              Thank you for your help, but I already solved the problem myself. Passwords are decrypted when the application is turned on, and encrypted when closed.

                              JonBJ SGaistS 3 Replies Last reply
                              0
                              • R Risver

                                @JonB said in Deleting row from QTableWidget and from Sqlite database:

                                @Risver This is over to you now.

                                Thank you for your help, but I already solved the problem myself. Passwords are decrypted when the application is turned on, and encrypted when closed.

                                JonBJ Online
                                JonBJ Online
                                JonB
                                wrote on last edited by
                                #62

                                @Risver That sounds like nothing to do with your model/database/update issues, which should now be working correctly.

                                1 Reply Last reply
                                0
                                • R Risver

                                  @JonB said in Deleting row from QTableWidget and from Sqlite database:

                                  @Risver This is over to you now.

                                  Thank you for your help, but I already solved the problem myself. Passwords are decrypted when the application is turned on, and encrypted when closed.

                                  SGaistS Offline
                                  SGaistS Offline
                                  SGaist
                                  Lifetime Qt Champion
                                  wrote on last edited by
                                  #63

                                  @Risver said in Deleting row from QTableWidget and from Sqlite database:

                                  @JonB said in Deleting row from QTableWidget and from Sqlite database:

                                  @Risver This is over to you now.

                                  Thank you for your help, but I already solved the problem myself. Passwords are decrypted when the application is turned on, and encrypted when closed.

                                  Base64 is not encryption. It's just encoding. I will be blunt: your password management is just plain wrong. Passwords shall be encrypted with a real encryption algorithm and they are never decrypted because it's a one way algorithm. If you want to avoid troubles in the future, take your time to properly implement that part.

                                  Interested in AI ? www.idiap.ch
                                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                  R 1 Reply Last reply
                                  2
                                  • SGaistS SGaist

                                    @Risver said in Deleting row from QTableWidget and from Sqlite database:

                                    @JonB said in Deleting row from QTableWidget and from Sqlite database:

                                    @Risver This is over to you now.

                                    Thank you for your help, but I already solved the problem myself. Passwords are decrypted when the application is turned on, and encrypted when closed.

                                    Base64 is not encryption. It's just encoding. I will be blunt: your password management is just plain wrong. Passwords shall be encrypted with a real encryption algorithm and they are never decrypted because it's a one way algorithm. If you want to avoid troubles in the future, take your time to properly implement that part.

                                    R Offline
                                    R Offline
                                    Risver
                                    wrote on last edited by
                                    #64

                                    @SGaist said in Deleting row from QTableWidget and from Sqlite database:

                                    @Risver said in Deleting row from QTableWidget and from Sqlite database:

                                    @JonB said in Deleting row from QTableWidget and from Sqlite database:

                                    @Risver This is over to you now.

                                    Thank you for your help, but I already solved the problem myself. Passwords are decrypted when the application is turned on, and encrypted when closed.

                                    Base64 is not encryption. It's just encoding. I will be blunt: your password management is just plain wrong. Passwords shall be encrypted with a real encryption algorithm and they are never decrypted because it's a one way algorithm. If you want to avoid troubles in the future, take your time to properly implement that part.

                                    I'm using "qaesencryption", the passwords are safe.

                                    1 Reply Last reply
                                    0
                                    • R Risver

                                      @JonB said in Deleting row from QTableWidget and from Sqlite database:

                                      @Risver This is over to you now.

                                      Thank you for your help, but I already solved the problem myself. Passwords are decrypted when the application is turned on, and encrypted when closed.

                                      SGaistS Offline
                                      SGaistS Offline
                                      SGaist
                                      Lifetime Qt Champion
                                      wrote on last edited by
                                      #65

                                      @Risver said in Deleting row from QTableWidget and from Sqlite database:

                                      Passwords are decrypted when the application is turned on, and encrypted when closed.

                                      This is not safe.

                                      Interested in AI ? www.idiap.ch
                                      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                      R 1 Reply Last reply
                                      0
                                      • SGaistS SGaist

                                        @Risver said in Deleting row from QTableWidget and from Sqlite database:

                                        Passwords are decrypted when the application is turned on, and encrypted when closed.

                                        This is not safe.

                                        R Offline
                                        R Offline
                                        Risver
                                        wrote on last edited by Risver
                                        #66

                                        @SGaist
                                        I realize this, but i have no idea how to do it differently. I don't know how to download the passwords from db and send them to the tableView without updating the database.

                                        JonBJ 1 Reply Last reply
                                        0
                                        • R Risver

                                          @SGaist
                                          I realize this, but i have no idea how to do it differently. I don't know how to download the passwords from db and send them to the tableView without updating the database.

                                          JonBJ Online
                                          JonBJ Online
                                          JonB
                                          wrote on last edited by JonB
                                          #67

                                          @Risver said in Deleting row from QTableWidget and from Sqlite database:

                                          I don't know how to download the passwords from db and send them to the tableView without updating the database.

                                          I don't know if you wish to discuss this any further, but if you do you would have to explain what this means, and why it has anything to do with the view (rather than the model), plus where updating the database is involved.

                                          When you put passwords into storage (like a database) there are two possible approaches, depending on what you need to do with the passwords:

                                          • If you need to decrypt them for some purpose (e.g. you have to pass it on in clear-text to something else) you have to use a symmetric (two-way) encryption algorithm, and that is inherently unsafe. Anyone else armed with the decryption algorithm can discover what the original clear-text password was.

                                          • But if you only to check user input against a previously supplied password, you do not need to decrypt, and you should use an asymmetric (one-way) algorithm. You store the previously-encrypted password and when the user supplies the password to check you only encrypt that as you did when storing, and compare that against what was stored. Either the encrypted versions are the same or they are not. This way end users/hackers cannot discover the saved password by decrypting, because that is not available, they simply have to supply the right password so that it is correct when encrypted only. For example, your SQL password or OS logon password is stored this way.

                                          R 1 Reply Last reply
                                          1

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved