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

cool.scx.jdbc.sql.UpdateResult Maven / Gradle / Ivy

There is a newer version: 2.7.4
Show newest version
package cool.scx.jdbc.sql;

import java.util.List;

/**
 * 数据库更新结果
 *
 * @author scx567888
 * @version 0.0.1
 */
public record UpdateResult(long affectedItemsCount, List generatedKeys) {

    /**
     * a
     *
     * @return a
     */
    public Long firstGeneratedKey() {
        return this.generatedKeys.size() > 0 ? this.generatedKeys.get(0) : null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy