Package nz.co.abrahams.asithappens.storage

Examples of nz.co.abrahams.asithappens.storage.DataHeadingsDAO


    public static DataPointDAO getDataPointDAO(Connection connection) throws DBException {
        return new DataPointDAO(connection);
    }
   
    public static DataHeadingsDAO getDataHeadingsDAO() throws DBException {
        return new DataHeadingsDAO(DBUtil.getConnection());
    }
View Full Code Here


    public static DataHeadingsDAO getDataHeadingsDAO() throws DBException {
        return new DataHeadingsDAO(DBUtil.getConnection());
    }
   
    public static DataHeadingsDAO getDataHeadingsDAO(Connection connection) throws DBException {
        return new DataHeadingsDAO(connection);
    }
View Full Code Here

TOP

Related Classes of nz.co.abrahams.asithappens.storage.DataHeadingsDAO

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.