I have added rs2xml.jar in my java library in order to fetch tables from my database and display it through my Jtable. but the problem is I'm getting all other columns except the column (img) which contains all images.
try{
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
conn = DriverManager.getConnection(DB_URL, USER, PASS);
pst = conn.createStatement();
String sql = "select * from employee_details";
rs = pst.executeQuery(sql);
ed.setModel(DbUtils.resultSetToTableModel(rs));
}
catch(Exception e)
{
JOptionPane.showMessageDialog(null, e);
}
This is my code. any suggestion??