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. connection to mysql xamp
Forum Updated to NodeBB v4.3 + New Features

connection to mysql xamp

Scheduled Pinned Locked Moved Unsolved General and Desktop
2 Posts 2 Posters 255 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.
  • P Offline
    P Offline
    petit_developer
    wrote on last edited by aha_1980
    #1

    I have a problem with my database even if I changed the data it says that the conection is stable while the base does not exist even
    #include <QCoreApplication>
    #include <QSqlDriver>
    #include <QSqlError>
    #include <QSqlQuery>

    #include <QDebug>
    #include <QSqlError>
    int main(int argc, char *argv[])
    {
    QCoreApplication a(argc, argv);
    QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL");
    db.setHostName("localhost");
    db.setUserName("root");
    db.setPassword("");
    db.setDatabaseName("personne");

       if(db.open())
       {
           qDebug() << "Connected";
       }else{
           qDebug() << "Connection Failed " << db.lastError();
       }
    return a.exec();
    

    }

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

      Hi and welcome to devnet,

      Connecting to a database and accessing its content are two different things.

      What exactly is your trouble here ?

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

      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