I have created a graphical interface in Netbeans where I inserted a JTable inside a FORM JFrame. I have a MySql database and it's columns are:
Id: Integer
Name: String
Active: Boolean
However, when I use: jTable.setModel (DbUtils.resultSetToTableModel ()) (method of the library RS2XML.jar), the JTable is filled all as String.
How do I make JTable filled with the correct data types just like the database (Integer, String and Boolean)?