Can someone upload the database drivers.dll. If you don't have time for more upload just QODBC.dll I really need it. Thank you in advance.
Can someone upload the database drivers.dll. If you don't have time for more upload just QODBC.dll I really need it. Thank you in advance.
Build it yourself... It's faster than waiting for someone else, and any plugin DLL someone gives you has to match your compiler exactly anyway.
Last edited by ChrisW67; 12th January 2012 at 01:49. Reason: wrong bbcode tag usage
And don't forget Qt version too.Build it yourself... It's faster than waiting for someone else, and any plugin DLL someone gives you has to match your compiler exactly anyway.
I lost 1 hour searching for the odbc.pro, and after opened every single folder I realized that I did not have it too.. now any other suggestion? If i uninstall it, download it again and after installing will I have that... drivers?
Install a U*ix system
Hint: if you want to compile something, you obviously need the source code for it.$ find . -name "*odbc.pro"
./src/plugins/sqldrivers/odbc/odbc.pro
Here are a few hints:
- Since 1995 Windows has a search function on the Start menu that can find a file by name with a minimum of fuss
- You won't find the Qt sources if you haven't installed them
- If you are using the Qt SDK then you should:
- Start the updater from the Qt Creator Help menu or the Windows Start menu
- Select Package Manager and press Next>
- Under Qt SDK > Miscellaneous > Qt Source select the sources matching the Qt version you are building against, press Next>
- Press Update and behold the magic
- You will find the sources under the obscurely named "QtSources" folder of the location you installed the SDK (usually C:\QtSDK)
- The make command is "mingw32-make" if you are using the MingW compiler
- If you are not using the SDK then you can download the sources matching your Qt binary version from the Qt download page
Last edited by ChrisW67; 13th January 2012 at 06:03. Reason: updated contents
EvIL_GuY (13th January 2012)
Ok I have downloaded the sources and I made everything from the link above and I get qsqlodbcd4.dll what should I do now?
Type:
as appropriate. This will copy the debug plugin, qsqlodbcd4.dll, into the correct plugins directory. That directory will be:Qt Code:
mingw32-make install OR nmake installTo copy to clipboard, switch view to plain text mode
Qt Code:
%QTDIR%\plugins\sqldrivers\odbcTo copy to clipboard, switch view to plain text mode
When you want to build the release version rerun the steps starting with:
Qt Code:
qmake CONFIG+=release OR qmake CONFIG+=build_allTo copy to clipboard, switch view to plain text mode
Bookmarks