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?

Is QSqlQuery safe?

Scheduled Pinned Locked Moved Solved General and Desktop
12 Posts 3 Posters 2.0k Views
  • 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.
  • M Offline
    M Offline
    mrjj
    Lifetime Qt Champion
    wrote on 7 Jul 2020, 16:53 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 7 Jul 2020, 16:54 last edited by
      #4

      @Christian-Ehrlicher @mrjj Thanks!

      Do you know how looks that changed by bindValue query?

      M C 2 Replies Last reply 7 Jul 2020, 16:55
      0
      • T TomNow99
        7 Jul 2020, 16:54

        @Christian-Ehrlicher @mrjj Thanks!

        Do you know how looks that changed by bindValue query?

        M Offline
        M Offline
        mrjj
        Lifetime Qt Champion
        wrote on 7 Jul 2020, 16:55 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 7 Jul 2020, 17:00 last edited by TomNow99 7 Jul 2020, 17:01
          #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.

          M 1 Reply Last reply 7 Jul 2020, 17:08
          0
          • T TomNow99
            7 Jul 2020, 17:00

            @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.

            M Offline
            M Offline
            mrjj
            Lifetime Qt Champion
            wrote on 7 Jul 2020, 17:08 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 7 Jul 2020, 17:35 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?

              M 1 Reply Last reply 7 Jul 2020, 17:41
              0
              • T TomNow99
                7 Jul 2020, 17:35

                @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?

                M Offline
                M Offline
                mrjj
                Lifetime Qt Champion
                wrote on 7 Jul 2020, 17:41 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 7 Jul 2020, 17:55 last edited by
                  #10

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

                  M 1 Reply Last reply 7 Jul 2020, 18:06
                  0
                  • T TomNow99
                    7 Jul 2020, 17:55

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

                    M Offline
                    M Offline
                    mrjj
                    Lifetime Qt Champion
                    wrote on 7 Jul 2020, 18:06 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
                      7 Jul 2020, 16:54

                      @Christian-Ehrlicher @mrjj Thanks!

                      Do you know how looks that changed by bindValue query?

                      C Offline
                      C Offline
                      Christian Ehrlicher
                      Lifetime Qt Champion
                      wrote on 7 Jul 2020, 19:45 last edited by Christian Ehrlicher 7 Jul 2020, 19:49
                      #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

                      12/12

                      7 Jul 2020, 19:45

                      • Login

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