org.kiwiproject.test.jdbi.JdbiGeneratedKeys Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kiwi-test Show documentation
Show all versions of kiwi-test Show documentation
Kiwi Test is a test utility library.
package org.kiwiproject.test.jdbi;
import lombok.experimental.UtilityClass;
import org.skife.jdbi.v2.GeneratedKeys;
import org.skife.jdbi.v2.Update;
import java.util.Map;
/**
* Utilities for extracting generated keys from JDBI 2 {@link GeneratedKeys} objects.
*/
@UtilityClass
public class JdbiGeneratedKeys {
/**
* Extract the value of a generated key named "id" as a Long.
*
* @param generatedKeys a {@link GeneratedKeys} containing a map of fields to value
* @return the generated key value
* @see Update#executeAndReturnGeneratedKeys()
* @see #generatedKey(GeneratedKeys, String)
*/
public static Long generatedId(GeneratedKeys
© 2015 - 2025 Weber Informatics LLC | Privacy Policy