1 package jimm.datavision.source.sql; 2 import jimm.datavision.Subreport; 3 import java.sql.Connection ; 4 import java.sql.SQLException ; 5 6 12 public class SubreportDatabase extends Database { 13 14 public SubreportDatabase(Connection conn, Subreport report) 15 throws SQLException  16 { 17 super(conn, report); 18 query = new SubreportQuery(report); 19 } 20 21 } 22 | Popular Tags |