Yeah hello there, I'm really new here.
So here's the problem.
Qt Code:
  1. QSqlDatabase: QMYSQL driver not loaded
  2. QSqlDatabase: available drivers: QSQLITE QMYSQL QMYSQL3 QPSQL QPSQL7
To copy to clipboard, switch view to plain text mode 
I've checked many forums already and have done things so far:
1) This is my .pro file
Qt Code:
  1. QT += core
  2. QT += sql
  3. QT -= gui
  4.  
  5. TARGET = DB
  6. CONFIG += console
  7. CONFIG -= app_bundle
  8.  
  9. QTPLUGIN += QSQLMYSQL
  10. TEMPLATE = app
  11.  
  12.  
  13. SOURCES += main.cpp
To copy to clipboard, switch view to plain text mode 

2) This is my sqldrivers folder:
Qt Code:
  1. alex@alex-Laptop:~/Programming/Qt/5.1.0/gcc_64/plugins/sqldrivers$ ls
  2. libqsqlite.so libqsqlmysql.so libqsqlpsql.so
To copy to clipboard, switch view to plain text mode 

3) Have also copied sqldrivers folder to project folder.

Non of these helped an error still exists.
I have read almost everything about my problem but nothing helped.
Please help newbie with the fix.

Thanks in advance