Package club.beans

Examples of club.beans.AttendanceBean


        try {
            conn = ConnectDB.connectMSDB();
            stmt = conn.createStatement();
            rs = stmt.executeQuery(query);
            while (rs.next()) {
                AttendanceBean bean = new AttendanceBean();
                bean.setMemberID(rs.getInt("MemberID"));
                bean.setEventID(rs.getInt("EventID"));
                bean.setType(rs.getInt("Type"));
                bean.setTransactionID(rs.getInt("TransactionID"));
                list.add(bean);
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
View Full Code Here

TOP

Related Classes of club.beans.AttendanceBean

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.