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

com.github.risedragon.mysql.jdbc.ActionMeta Maven / Gradle / Ivy

The newest version!
package com.github.risedragon.mysql.jdbc;

import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

/**
 * Action meta operation for a type
 */
public interface ActionMeta {

	 void set(PreparedStatement pstmt, int[] pos, T value) throws SQLException;

	 T get(ResultSet rs, Integer pos, Class type) throws SQLException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy