package process; import javax.swing. * ; import javax.swing.table. * ; import java.sql. * ; /** * This class create JTable from Database table. * User program needs to specify database connection and corresponding atable name. * @author Hemraj */ public class TableToJTable { //private String table; private Connection con; public TableToJTable ( Connection con ){ this .con = con; } /** * This method return JTable object created from Database table having same data asn structure *...
Future driven solutions.