Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. sqlite datebase

    Log in to post
    • All categories
    • P

      Solved Qt Sqlite loading data to QComboBox slow and freeze for seconds
      General and Desktop • qt 6.0.2 sqlite datebase qcombobox • • Proton Phoenix

      11
      0
      Votes
      11
      Posts
      469
      Views

      artwaw

      @Proton-Phoenix Thank you!

    • deleted511

      Unsolved SQLite select and update statements
      General and Desktop • sqlite datebase sqlite queries • • deleted511

      6
      0
      Votes
      6
      Posts
      1801
      Views

      mrjj

      @Danielpopo
      Hi
      super.
      What i meant was that sometimes
      integers do not convert to strings as expected with +

      int number=888;
      QString a="a";
      QString b="b";
      QString result=a+number+b;
      qDebug() <<"-------" << result;

      expected a888b
      got axb

      so i was not sure if all was strings in your statement. Since it work, you didnt have such case :)