Package org.jresearch.gossip.dao.drivers

Examples of org.jresearch.gossip.dao.drivers.DbDriver


        throws InstantiationException, IllegalAccessException,
            InvocationTargetException, NoSuchMethodException, SQLException {
        Set keys = mapping.keySet();
        this.records = new ArrayList();

        DbDriver dvDriver = DbDriver.getInstance();

        while (rs.next()) {
            Object item = klass.newInstance();
            Iterator it = keys.iterator();

            while (it.hasNext()) {
                String key = (String) it.next();
                PropertyUtils.setProperty(item, key,
                    dvDriver.mapObjectType(rs.getObject(
                            (String) mapping.get(key))));
            }

            this.records.add(item);
        }
View Full Code Here

TOP

Related Classes of org.jresearch.gossip.dao.drivers.DbDriver

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.