Posts by Gabriel Custódio • 61 points
3 posts
-
1
votes2
answers1026
viewsA: Loop with options
You should read the input inside the repetition, example: short entradaTeclado; do{ //lê dado e realiza uma operação entradaTeclado = leitorEntrada.nextShort(); switch(entradaTeclado){ case 1: /*faz…
javaanswered Gabriel Custódio 61 -
1
votes2
answers461
viewsA: QMYSQL driver not Loaded Qtcreator
I decided to install the package Qt5-qtbase-mysql and copying the file /usr/lib64/Qt5/plugins/sqldrivers/libqsqlmysql.so replacing the file located in…
-
4
votes2
answers461
viewsQ: QMYSQL driver not Loaded Qtcreator
I am trying to connect to the database with Qtcreator as follows: this->db = QSqlDatabase::addDatabase("QMYSQL"); this->db.setHostName("localhost"); this->db.setDatabaseName("Pessoa");…