Package org.apache.derbyTesting.system.oe.direct

Examples of org.apache.derbyTesting.system.oe.direct.SimpleNonStandardOperations


        return new CleanDatabaseTestSetup(suite);
    }
   
    private SimpleNonStandardOperations getNSOps() throws SQLException
    {
        return new SimpleNonStandardOperations(
                getConnection(), Connection.TRANSACTION_SERIALIZABLE);
    }
View Full Code Here


    /**
     * Test the non-standard customer inquiry transaction
     */
    public void testCustomerInquiry() throws SQLException
    {
        SimpleNonStandardOperations nsops = getNSOps();
                  
        for (int i = 0; i < 20; i++)
            nsops.customerInquiry(1);
       
        nsops.close();
    }
View Full Code Here

    /**
     * Test the non-standard customer address change transaction
     */
    public void testCustomerAddressChange() throws SQLException
    {
        SimpleNonStandardOperations nsops = getNSOps();
                  
        for (int i = 0; i < 20; i++)
            nsops.customerAddressChange(1);
       
        nsops.close();
    }
View Full Code Here

        return new CleanDatabaseTestSetup(suite);
    }
   
    private SimpleNonStandardOperations getNSOps() throws SQLException
    {
        return new SimpleNonStandardOperations(
                getConnection(), Connection.TRANSACTION_SERIALIZABLE);
    }
View Full Code Here

    /**
     * Test the non-standard customer inquiry transaction
     */
    public void testCustomerInquiry() throws SQLException
    {
        SimpleNonStandardOperations nsops = getNSOps();
                  
        for (int i = 0; i < 20; i++)
            nsops.customerInquiry(1);
       
        nsops.close();
    }
View Full Code Here

    /**
     * Test the non-standard customer address change transaction
     */
    public void testCustomerAddressChange() throws SQLException
    {
        SimpleNonStandardOperations nsops = getNSOps();
                  
        for (int i = 0; i < 20; i++)
            nsops.customerAddressChange(1);
       
        nsops.close();
    }
View Full Code Here

TOP

Related Classes of org.apache.derbyTesting.system.oe.direct.SimpleNonStandardOperations

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.