Try making a JList out of the model you get from that DbUtils, then use that JList in your setModel.

For example:

JList myList = new JList(DbUtils.resultSetToTableModel(rs));...