Which component to use in PyQt4 to display records of an SQL query on the screen?

3

I'm developing a graphical desktop application in Python using PyQt4 (Qt Designer), my doubt is about which component to use to display on my screen frmTelaPesqAluno records of a SQL query, and how to use it? It is a component similar to% Visual Studio% or a Grid that I need to use to list query records.

Here is the screen image I'm developing:

    
asked by anonymous 30.08.2015 / 20:46

1 answer

3

Did you look in the documentation? This is QTableWidget . There are other widgets in it.

A simple example in Python .

More complete tutorial for C ++ using Model-View .

Other on the subject .

A full application using it .

    
30.08.2015 / 20:57