Hello,

What is the easiest way to do the following in a QTableView:

X| A B C
--------------
D|
E|
F|

convert to:

X| D E F
--------------
A|
B|
C|


To be more accurate, I have a QSqlTableModel via which I populate a QTableView. Now instead of showing the database entries (records) in each row of the view, I would like to show them in every column of the view.

Thank you

(P.S. my ascii art sucks, freel free to spit me :P)