
com.github.risedragon.mysql.jdbc.ActionMeta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-mysqlclient Show documentation
Show all versions of spring-mysqlclient Show documentation
A very simple/efficient Mysql Client Framework
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