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

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy