I have an application that uses SQLite via Qt libraries (I mean QSqlDatabase). When I run this application from Qt Creator (both in Debug and Release configurations), all works as expected, but when I trying to start an application via .exe file manually, it crashes right after SQLite database operations. I already have "sqldrivers" directory with "qsqlite.dll" file right next to the executable. There's no exception, because I already have a try-catch block around the function that works with SQLite.
What am I doing wrong? How can I fix it?
I'm using Qt5 and MSVC-11.0
Thanks in advance.