Hello
I would like to display the column that i have in the database as a row in my JTable please. Is it possible to do that? I am using hibernate and defaulttable model.
For eg: I have character_no in my database as a column and it displays on my JTable as follows(on query).
Character_no
23
34
21
6
7
.
.
and so on
What I would like it to do is
Character_no 23 34 21 6 7.. and so on.
Thank you