I'm trying to come up with a way to transfer data from a Database to a JTable, At first i was thinking to do it using a ResultSet into a Vector into a DefaultTableModel, because DefaultTableModel takes only a Vector, But later as i read it seems that vector is obsolete and deprecated. So my question is, Would it be bad programming to use Vector in such case? And if vector is deprecated then why does DefaultTableModel takes only a Vector?
-thanks.