Package esk.lottery.RegistrationUpdater

Examples of esk.lottery.RegistrationUpdater.Registration


                String AM = regStudentRs.getString("studAM");
                String courseID = regStudentRs.getString("lessonID");
                String labID = regStudentRs.getString("labID");

                // Κώδικας που τα περνάει σαν facts
                Registration reg = new Registration(AM, labID, courseID, 1, true);
                es.add(reg);
            }
            regStudentStmt.close();
        } catch (SQLException e) {
            System.err.println("SQL Exception: " + e.toString());
View Full Code Here


                String[] combinedID = regStudentRs.getString("labID").split("_");
                String courseID = combinedID[0];
                String labID = combinedID[0] + "_" + combinedID[1]; // courseID και labID μπαίνουν μαζί για να εξασφαλιστεί η μοναδικότητα κάθε εργαστηριακού τμήματος

                // Κώδικας που τα περνάει σαν facts
                Registration reg = new Registration(AM, labID, courseID, 1, true);
                es.add(reg);
            }
            regStudentStmt.close();
        } catch (SQLException e) {
            System.err.println("SQL Exception: " + e.toString());
View Full Code Here

TOP

Related Classes of esk.lottery.RegistrationUpdater.Registration

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.