Results 1 to 4 of 4

Thread: Three Tier Database Programming - Design Pattern

  1. #1
    Join Date
    Jan 2006
    Location
    Kerala
    Posts
    371
    Thanks
    76
    Thanked 37 Times in 32 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Three Tier Database Programming - Design Pattern

    Guys,
    Do you have links or Source snippets of Three Tier Database Progamming in Qt. Links to three tier - design patterns would be of great Help.

    Thanks in Advance
    We can't solve problems by using the same kind of thinking we used when we created them

  2. #2
    Join Date
    Jan 2006
    Location
    Kerala
    Posts
    371
    Thanks
    76
    Thanked 37 Times in 32 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: Three Tier Database Programming - Design Pattern



    Knock Knock !

    We can't solve problems by using the same kind of thinking we used when we created them

  3. #3
    Join Date
    Jan 2006
    Location
    Lincoln, NE USA
    Posts
    177
    Thanks
    3
    Thanked 7 Times in 6 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: Three Tier Database Programming - Design Pattern

    Quote Originally Posted by sunil.thaha


    Knock Knock !

    Hello,
    We're here, we heard you ask, but no one replied.

    That may be because QT emphasizes the MVC approach, as described in the Assistant. (Model, View, Controller).

    Personally, I put the QT GUI executable on an application server, and users fire it from their workstation.

    I put SQL code which taxes Oracle/PostgreSQL in server-side Procedures/Functions and call them from the GUI with a query;
    Qt Code:
    1. QSqlQuery qryString = "select * from view"
    2. qryString.exec()
    To copy to clipboard, switch view to plain text mode 
    where the "view" syntax/proc/func is stored on the server.

  4. #4
    Join Date
    Apr 2010
    Location
    Izmir, Turkey
    Posts
    7
    Thanks
    1
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows

    Default Re: Three Tier Database Programming - Design Pattern

    I am also very interested on this topic ( 3-tier database application using qt). I would be very glad to see source snippets.
    thanks.

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.