All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.itranswarp.rdb.InsertBatchT Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.itranswarp.rdb;

public class InsertBatchT {

    InsertInfo insertInfo;

    InsertBatchT(InsertInfo insertInfo, T[] beans) {
        if (beans.length == 0) {
            throw new IllegalArgumentException("objects is empty.");
        }
        insertInfo.beans = beans;
        this.insertInfo = insertInfo;
    }

    void run() {
        new InsertRunner(this.insertInfo).run();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy