io.github.matteobertozzi.easerinsights.jdbc.sqlx.SqlRow Maven / Gradle / Ivy
The newest version!
package io.github.matteobertozzi.easerinsights.jdbc.sqlx;
import java.sql.SQLException;
public interface SqlRow {
SqlRow addBool(boolean value) throws SQLException;
SqlRow addShort(short value) throws SQLException;
SqlRow addInt(int value) throws SQLException;
SqlRow addLong(long value) throws SQLException;
SqlRow addBytes(byte[] value) throws SQLException;
SqlRow addString(String value) throws SQLException;
T bind();
}