
net.dongliu.dbutils.mapper.ColumnNamesProvider Maven / Gradle / Ivy
package net.dongliu.dbutils.mapper;
import java.sql.SQLException;
/**
* Interface for get column names lazily
*/
@FunctionalInterface
public interface ColumnNamesProvider {
/**
* Get column names
*/
String[] get() throws SQLException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy