Package model

Examples of model.Discipline


            System.out.println(req);
            result = stmt.executeQuery(req);

//            discipline.add(new Discipline());
            while (result.next()) {
                disciplines.add(new Discipline(result.getString(1)));
            }
            result.close();
            stmt.close();
            return disciplines;
        } catch (SQLException ex) {
View Full Code Here

TOP

Related Classes of model.Discipline

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.