Package com.yagocarballo.database

Examples of com.yagocarballo.database.MySQL_Handler


    public static void main (String[] args) { new Start(); }

    public Start () {
        try {
            prop.load(Start.class.getResourceAsStream("/settings.properties"));
            db = new MySQL_Handler(prop);
            db.connect();

        } catch (IOException e) {
            e.printStackTrace();
        }
View Full Code Here


    }

    @Test
    public void testConnection () throws Exception {
        System.out.println("-- Testing Database Connection");
        db = new MySQL_Handler(prop);
        assertEquals("Testing Connection to Database: ", true, db.connect());
    }
View Full Code Here

TOP

Related Classes of com.yagocarballo.database.MySQL_Handler

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.