So, there is:
Oracle 11g Express Edition x64
Qt 5.11.0 + MinGW x32 + MSVC2015 x64 (Even studio 2015 is there)
Win7 x64
Now to the problem, it is necessary to connect the project to the database via ODBC
When building via MinGW and configuring ODBC via administration, we have an error:
When configuring ODBC through odbcad32.exe from SysWOW64, the error is: 
Well, if you build a project through MSVC, then the error is as follows: 
How to connect the project to the database? Which way to dig? Which of the shoals to fix in the first place?
QSqlDatabase db = QSqlDatabase::addDatabase("QODBC", "XE"); db.setHostName("localhost"); //- db.setPort(1521); //- db.setDatabaseName("XE"); //+ db.setUserName("system"); //+ db.setPassword("2608"); //+ if (!db.open()) { QMessageBox::information(this, "HEOK",db.lastError().text()); } else QMessageBox::information(this, "OK", "KRUTO!");