Package cat.quickdb.model

Examples of cat.quickdb.model.Alter1


    @Test
    public void testAlterTable(){
        admin.executeQuery("DROP TABLE AlterTable");

        Alter1 alter1 = new Alter1();
        alter1.setName("alter table1");

        Assert.assertTrue(admin.save(alter1));

        Alter2 alter2 = new Alter2();
        alter2.setName("alter table2");
View Full Code Here

TOP

Related Classes of cat.quickdb.model.Alter1

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.