Results 1 to 6 of 6

Thread: Static vs Plugin

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #3
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,370
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: Static vs Plugin

    Quote Originally Posted by treyhaslem View Post
    What is the difference between static and plugin.
    "Static" means support for PostgreSQL will be built into Qt library and every Qt program using the SQL module regardless if it communicates with PostgreSQL databases or not will need psql library. This is not the case with plugins. Therefore if you want to develop different kinds of applications with Qt, it's better to use the plugin approach. Just remember that if you build Qt statically, plugins will also be built statically (although not as part of Qt library) and you will have to tell your program to link against specific plugins (see docs entry for "static plugins").
    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.


  2. The following user says thank you to wysota for this useful post:

    treyhaslem (4th December 2009)

Similar Threads

  1. Extending a plugin in a static library
    By ultim8 in forum Qt Programming
    Replies: 5
    Last Post: 25th March 2010, 15:10
  2. Replies: 11
    Last Post: 13th July 2009, 16:05
  3. How to use static mysql plugin
    By khikho in forum Qt Programming
    Replies: 7
    Last Post: 19th January 2009, 21:44
  4. Replies: 16
    Last Post: 23rd May 2008, 10:12
  5. QPluginLoader not recognizing a plugin
    By KShots in forum Qt Programming
    Replies: 3
    Last Post: 29th June 2007, 14:13

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
  •  
Qt is a trademark of The Qt Company.