Results 1 to 20 of 38

Thread: How to add a lib to a qt project

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Sep 2009
    Location
    Wroclaw, Poland
    Posts
    1,394
    Thanked 342 Times in 324 Posts
    Qt products
    Qt4 Qt5
    Platforms
    MacOS X Unix/X11 Windows Android

    Default Re: How to add a lib to a qt project

    You can remove the OTHER_FILES += libpg.lib, because you are going to use Qt plugin for accessing database.
    You have the qsqlpsql4.dll, so you should be able to use it, try to copy this file to your applications directory, or another place where windows searches for dlls.
    There is a QSqlDatabase::drivers () method, it returns a list of all available drivers.

  2. #2
    Join Date
    Feb 2011
    Posts
    26
    Thanks
    2
    Thanked 1 Time in 1 Post
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: How to add a lib to a qt project

    okay, I copied the "qsqlpsql4.dll" and "qsqlpsql.lib" to my project directory and added it in the *.pro file:

    Qt Code:
    1. LIBS += -L"qsqlpsql4.lib"
    To copy to clipboard, switch view to plain text mode 

    In my *.cpp I asked for available drivers:

    Qt Code:
    1. QSqlDatabase dbAlex;
    2. QStringList slDrivers = dbAlex.drivers();
    To copy to clipboard, switch view to plain text mode 

    The Result ist slDrivers is:
    QSQLITE
    QODBC3
    QODBC

    But no PSQL or something similar.

  3. #3
    Join Date
    Sep 2009
    Location
    Wroclaw, Poland
    Posts
    1,394
    Thanked 342 Times in 324 Posts
    Qt products
    Qt4 Qt5
    Platforms
    MacOS X Unix/X11 Windows Android

    Default Re: How to add a lib to a qt project

    LIBS += -L"qsqlpsql4.lib"
    this line makes no sense - use -L switch when you want to add a directory to linker search path, the same I haven't noticed in your .pro file posted before:
    LIBS += -L"D:/Qt-Projekte/SQL_BSP/libpg.lib"
    There should be no "-L" here either.
    You don't have to add qt sql plugins to pro file, because you want to load them at runtime.
    Try to see if the plugin is visible if you call QApplication::addLibraryPath(path) with path=<"directory with qt psql plugin"> after creating QApplication instance.

  4. #4
    Join Date
    Feb 2011
    Posts
    26
    Thanks
    2
    Thanked 1 Time in 1 Post
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: How to add a lib to a qt project

    Sorry, but I'm really a beginner in Qt.
    I think I need more information, about what I have to do.
    Maybe it will help me if there is an easy example for using postgres with qt.

  5. #5
    Join Date
    Mar 2009
    Location
    Brisbane, Australia
    Posts
    7,729
    Thanks
    13
    Thanked 1,610 Times in 1,537 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows
    Wiki edits
    17

    Default Re: How to add a lib to a qt project

    Before you can use the PostgreSQL plugin for Qt you will have to build it. Building the plugin has nothing to do with your project or its PRO file and your project does not need to link with PostgreSQL libraries directly. You only need to link to PostgreSQL libraries directly if your code uses the PostgreSQL API directly, i.e. not through the Qt Sql libraries.

    Open Qt Assistant and read the page Sql Database Drivers and particularly the bit about building the PostgreSQL driver on Mac, Linux, or Windows. Just substitute the correct PostgreSQL locations for your machine in the build commands. Once the plugin is built and installed QSqlDatabase::drivers() should show QPSQL.

  6. #6
    Join Date
    Sep 2009
    Location
    Wroclaw, Poland
    Posts
    1,394
    Thanked 342 Times in 324 Posts
    Qt products
    Qt4 Qt5
    Platforms
    MacOS X Unix/X11 Windows Android

    Default Re: How to add a lib to a qt project

    @ChrisW67:
    The thing is that this plugin is probably already built ( qsqlpsql.dll exisits in his Qt installation ).
    @WilliamSpiderWeb:
    Have you tried with QApplication::addLibraryPath ? I think I've provided you with wrong info, plugins should be located in "sqldrivers" subdirectory, so it should look like:
    QApplication::addLibraryPath("some path/plugins"), where "plugins" directory contains "sqldrivers" subdir (and you have psql dll file in this directory).

  7. #7
    Join Date
    Feb 2011
    Posts
    26
    Thanks
    2
    Thanked 1 Time in 1 Post
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: How to add a lib to a qt project

    I hope I understood it the right way.
    My main() is looking like this now:
    Qt Code:
    1. int main(int argc, char *argv[])
    2. {
    3. QApplication a(argc, argv);
    4. a.addLibraryPath("C:/Qt/2010.05/qt/plugins/sqldrivers");
    5. MainWindow w;
    6. w.show();
    7. return a.exec();
    8. }
    To copy to clipboard, switch view to plain text mode 

    But the available drivers are still the same.
    The Question is, how should the software know which dll I need. It just knows where the dlls are located.

  8. #8
    Join Date
    Sep 2009
    Location
    Wroclaw, Poland
    Posts
    1,394
    Thanked 342 Times in 324 Posts
    Qt products
    Qt4 Qt5
    Platforms
    MacOS X Unix/X11 Windows Android

    Default Re: How to add a lib to a qt project

    No, I mean the "parent" directory for plugins:
    Qt Code:
    1. QApplication::addLibraryPath("C:/Qt/2010.05/qt/plugins"); // without "sqldrivers"
    To copy to clipboard, switch view to plain text mode 

  9. #9
    Join Date
    Feb 2011
    Posts
    26
    Thanks
    2
    Thanked 1 Time in 1 Post
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: How to add a lib to a qt project

    sorry, I tried first without "sqldrivers" and after it with "sqldrivers".
    But I qoute the wrong codeline to my reply

  10. #10
    Join Date
    Sep 2009
    Location
    Wroclaw, Poland
    Posts
    1,394
    Thanked 342 Times in 324 Posts
    Qt products
    Qt4 Qt5
    Platforms
    MacOS X Unix/X11 Windows Android

    Default Re: How to add a lib to a qt project

    So it looks like you'll need to build it indeed - its quite easy, just follow the link ChrisW67 gave you in previous post (there is QPSQL section).

  11. #11
    Join Date
    Feb 2011
    Posts
    26
    Thanks
    2
    Thanked 1 Time in 1 Post
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: How to add a lib to a qt project

    I tried to build the psql plugin before,
    but even there I need some support.

    The doc says I have to use these commands

    Qt Code:
    1. cd %QTDIR%\src\plugins\sqldrivers\psql
    2. qmake "INCLUDEPATH+=C:\psql\include" "LIBS+=C:\psql\lib\ms\libpq.lib" psql.pro
    3. nmake
    To copy to clipboard, switch view to plain text mode 

    when I type the second command (yes I used the right path for psql) I get no error but the psql.pro file is still empty.

    when I type the nmake my windows tells me it cannot find nmake. And I can't find nmake in the qt directory either.

    At this point I have to say, thanks for your effort and patience.

  12. #12
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: How to add a lib to a qt project

    I think the "problem" is a missing PostgreSQL dll, not the Qt driver. The driver also needs the dll.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


Similar Threads

  1. Qt project management - bigger project
    By Peppy in forum Qt Programming
    Replies: 11
    Last Post: 24th December 2010, 13:50
  2. How to add a gif to a Qt Project?
    By Bong.Da.City in forum Newbie
    Replies: 5
    Last Post: 6th September 2010, 21:51
  3. new project
    By rk0747 in forum Qt Programming
    Replies: 5
    Last Post: 17th February 2010, 08:53
  4. Replies: 1
    Last Post: 3rd December 2009, 23:34
  5. Project generation on linux from QT Project
    By darpan in forum Qt Programming
    Replies: 6
    Last Post: 11th December 2006, 09:43

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.