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

com.dream.jdbc.row.RowMapping Maven / Gradle / Ivy

The newest version!
package com.dream.jdbc.row;

import com.dream.system.config.Configuration;

import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;

public interface RowMapping {

    default void init(ResultSetMetaData metaData, Configuration configuration) throws SQLException {

    }

    T mapTow(ResultSet resultSet) throws SQLException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy