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

net.hasor.db.lambda.InsertExecute Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2002-2005 the original author or authors.
 *
 * Licensed 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 net.hasor.db.lambda;
import net.hasor.db.lambda.LambdaOperations.LambdaQuery;

import java.sql.SQLException;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.function.Consumer;

/**
 * lambda Insert 执行器
 * @version : 2020-10-31
 * @author 赵永春 ([email protected])
 */
public interface InsertExecute extends BoundSqlBuilder {
    /** 执行插入,并且将返回的int结果相加。*/
    public default int executeSumResult() throws SQLException {
        int[] results = this.executeGetResult();
        int sumValue = 0;
        for (int result : results) {
            sumValue = sumValue + result;
        }
        return sumValue;
    }

    /** 执行插入,并返回所有结果*/
    public int[] executeGetResult() throws SQLException;

    /** 当插入遇到重复键,使用新值替代旧值(当 SQL 方言不支持时,会退化为 onDuplicateKeyBlock)*/
    public InsertExecute onDuplicateKeyUpdate();

    /** 当插入遇到重复键时,忽略新值插入(当 SQL 方言不支持时,会退化为 onDuplicateKeyBlock)*/
    public InsertExecute onDuplicateKeyIgnore();

    /** 当插入遇到重复键时,报错(默认)*/
    public InsertExecute onDuplicateKeyBlock();

    /** 批量插入记录。 */
    public default InsertExecute applyEntity(T entity) {
        return applyEntity(Collections.singletonList(entity));
    }

    /** 批量插入记录。 */
    public InsertExecute applyEntity(List entity);

    /** insert form select */
    public  InsertExecute applyQueryAsInsert(LambdaQuery lambdaQuery);

    /** insert form select */
    public  InsertExecute applyQueryAsInsert(Class exampleType, Consumer> queryBuilderConsumer);

    /** 批量插入记录。 */
    public default InsertExecute applyMap(Map dataMap) {
        return applyMap(Collections.singletonList(dataMap));
    }

    /** 批量插入记录。 */
    public InsertExecute applyMap(List> dataMapList);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy