Package main.pattern.mysql

Examples of main.pattern.mysql.MySQLControllerCreator.create()


    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) throws IOException {
        DBControllerCreator creator = new MySQLControllerCreator();
        DBController connection = creator.create();
        connection.openConnect();
        connection.executeQuery("Some query.");
        connection.closeConnect();
        DBControllerCreator creator2 = new OracleControllerCreator();
        DBController connection2 = creator2.create();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.