Package org.lealone.test.jdbc.misc

Source Code of org.lealone.test.jdbc.misc.BatchTest

/*
* Copyright 2011 The Apache Software Foundation
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.lealone.test.jdbc.misc;

import static junit.framework.Assert.assertEquals;

import java.sql.PreparedStatement;

import org.junit.Test;
import org.lealone.test.jdbc.TestBase;

public class BatchTest extends TestBase {
    @Test
    public void run() throws Exception {
        init();
        testStatementBatch();
        testPreparedStatementBatch();
    }

    void init() throws Exception {
        stmt.executeUpdate("CREATE TABLE IF NOT EXISTS BatchTest(f1 int primary key, f2 int)");
    }

    void testStatementBatch() throws Exception {
        stmt.clearBatch();
        for (int i = 1; i <= 5; i++) {
            stmt.addBatch("INSERT INTO BatchTest(f1, f2) VALUES(" + i + "," + (i * 2) + ")");
        }

        int[] result = stmt.executeBatch();
        assertEquals(5, result.length);
        for (int i = 1; i <= 5; i++) {
            assertEquals(1, result[i - 1]);
        }

        stmt.clearBatch();
        result = stmt.executeBatch();
        assertEquals(0, result.length);
    }

    void testPreparedStatementBatch() throws Exception {
        sql = "INSERT INTO BatchTest(f1, f2) VALUES(?, ?)";
        PreparedStatement ps = conn.prepareStatement(sql);
        for (int i = 1; i <= 5; i++) {
            ps.setInt(1, i);
            ps.setInt(2, i * 2);
            ps.addBatch();
        }

        int[] result = ps.executeBatch();
        assertEquals(5, result.length);
        for (int i = 1; i <= 5; i++) {
            assertEquals(1, result[i - 1]);
        }

        ps.clearBatch();
        result = ps.executeBatch();
        assertEquals(0, result.length);

        ps.close();
    }
}
TOP

Related Classes of org.lealone.test.jdbc.misc.BatchTest

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.