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. Is QSqlQuery safe?
Forum Updated to NodeBB v4.3 + New Features

Is QSqlQuery safe?

Scheduled Pinned Locked Moved Solved General and Desktop
12 Posts 3 Posters 2.2k Views 1 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.
  • Christian EhrlicherC Online
    Christian EhrlicherC Online
    Christian Ehrlicher
    Lifetime Qt Champion
    wrote on last edited by
    #2

    Binding sql values is the way to avoid sql injection since the data is separated by the query. This is nothing Qt specific though.

    Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
    Visit the Qt Academy at https://academy.qt.io/catalog

    1 Reply Last reply
    3
    • mrjjM Offline
      mrjjM Offline
      mrjj
      Lifetime Qt Champion
      wrote on last edited by
      #3

      Hi
      If you mean safe in terms of someone hacking your binary exe and alter the strings, then no.

      But BindValue is the right way to do it and not by string appending anyway :)

      1 Reply Last reply
      1
      • T Offline
        T Offline
        TomNow99
        wrote on last edited by
        #4

        @Christian-Ehrlicher @mrjj Thanks!

        Do you know how looks that changed by bindValue query?

        mrjjM Christian EhrlicherC 2 Replies Last reply
        0
        • T TomNow99

          @Christian-Ehrlicher @mrjj Thanks!

          Do you know how looks that changed by bindValue query?

          mrjjM Offline
          mrjjM Offline
          mrjj
          Lifetime Qt Champion
          wrote on last edited by
          #5

          Hi

          • Do you know how looks that changed by bindValue query?

          Im not sure how to read that ?
          Could you try other wording ? :)

          1 Reply Last reply
          0
          • T Offline
            T Offline
            TomNow99
            wrote on last edited by TomNow99
            #6

            @mrjj Yes :)

            So when I write:

                QSqlQuery query;
                QString id = "1 or 2=2";
                query.prepare(R"(SELECT * FROM tableName WHERE id = )"+id);
                query.exec();
            

            I think that "id" is changed by QString and I get:

            SELECT * FROM tableName WHERE id = 1 or 2=2
            

            And this query will go to database.

            And how looks query when I use bindValue? I think this is not simple substitute, so I don't get "SELECT * FROM tableName WHERE id = 1 or 2=2", but something other.

            mrjjM 1 Reply Last reply
            0
            • T TomNow99

              @mrjj Yes :)

              So when I write:

                  QSqlQuery query;
                  QString id = "1 or 2=2";
                  query.prepare(R"(SELECT * FROM tableName WHERE id = )"+id);
                  query.exec();
              

              I think that "id" is changed by QString and I get:

              SELECT * FROM tableName WHERE id = 1 or 2=2
              

              And this query will go to database.

              And how looks query when I use bindValue? I think this is not simple substitute, so I don't get "SELECT * FROM tableName WHERE id = 1 or 2=2", but something other.

              mrjjM Offline
              mrjjM Offline
              mrjj
              Lifetime Qt Champion
              wrote on last edited by
              #7

              Hi
              Much better :)
              there is
              QString sql = query.executedQuery();
              https://doc.qt.io/qt-5/qsqlquery.html#executedQuery

              1 Reply Last reply
              0
              • T Offline
                T Offline
                TomNow99
                wrote on last edited by
                #8

                @mrjj But this isn't exactly what I ask about :) But of course thank you :)

                When I execute query.executedQuery() I get:

                "SELECT * from tableName where id=(:id)"

                Yeah, this is correct. But how database read this query?

                Maybe:
                SELECT * from tableName where cast(id AS text ) = "1 or 2=2" ?

                Here I change id which is int column to text column and int value and logical value (1 or 2=2 ) to its equivalent in text type?

                mrjjM 1 Reply Last reply
                0
                • T TomNow99

                  @mrjj But this isn't exactly what I ask about :) But of course thank you :)

                  When I execute query.executedQuery() I get:

                  "SELECT * from tableName where id=(:id)"

                  Yeah, this is correct. But how database read this query?

                  Maybe:
                  SELECT * from tableName where cast(id AS text ) = "1 or 2=2" ?

                  Here I change id which is int column to text column and int value and logical value (1 or 2=2 ) to its equivalent in text type?

                  mrjjM Offline
                  mrjjM Offline
                  mrjj
                  Lifetime Qt Champion
                  wrote on last edited by
                  #9

                  @TomNow99
                  Hi
                  I actually expected a bit more info o.O :)

                  For test could you try this code and see if it shows more ?

                  QString getLastExecutedQuery(const QSqlQuery& query)
                  {
                      QString sql = query.executedQuery();
                      int nbBindValues = query.boundValues().size();
                  
                      for(int i = 0, j = 0; j < nbBindValues;)
                      {
                          int s = sql.indexOf(QLatin1Char('\''), i);
                          i = sql.indexOf(QLatin1Char('?'), i);
                          if (i < 1)
                          {
                              break;
                          }
                  
                          if(s < i && s > 0)
                          {
                              i = sql.indexOf(QLatin1Char('\''), s + 1) + 1;
                              if(i < 2)
                              {
                                  break;
                              }
                          }
                          else
                          {
                              const QVariant &var = query.boundValue(j);
                              QSqlField field(QLatin1String(""), var.type());
                              if (var.isNull())
                              {
                                  field.clear();
                              }
                              else
                              {
                                  field.setValue(var);
                              }
                              QString formatV = query.driver()->formatValue(field);
                              sql.replace(i, 1, formatV);
                              i += formatV.length();
                              ++j;
                          }
                      }
                  
                      return sql;
                  }
                  

                  https://stackoverflow.com/questions/5777409/how-to-get-last-prepared-and-executed-query-using-qsqlquery

                  1 Reply Last reply
                  0
                  • T Offline
                    T Offline
                    TomNow99
                    wrote on last edited by
                    #10

                    @mrjj The same, but no problem. The most important for me is that bindValue is safe

                    mrjjM 1 Reply Last reply
                    0
                    • T TomNow99

                      @mrjj The same, but no problem. The most important for me is that bindValue is safe

                      mrjjM Offline
                      mrjjM Offline
                      mrjj
                      Lifetime Qt Champion
                      wrote on last edited by
                      #11

                      @TomNow99
                      Ok :)
                      I must remember wrong then :)
                      i was sure it would show the "bound" version.

                      1 Reply Last reply
                      1
                      • T TomNow99

                        @Christian-Ehrlicher @mrjj Thanks!

                        Do you know how looks that changed by bindValue query?

                        Christian EhrlicherC Online
                        Christian EhrlicherC Online
                        Christian Ehrlicher
                        Lifetime Qt Champion
                        wrote on last edited by Christian Ehrlicher
                        #12

                        @TomNow99 said in Is QSqlQuery safe?:

                        Do you know how looks that changed by bindValue query?

                        Nothing will be changed. I already told you what happens: "... since the data is separated by the query."

                        Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                        Visit the Qt Academy at https://academy.qt.io/catalog

                        1 Reply Last reply
                        0

                        • Login

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