com.sap.cds.jdbc.spi.ValueBinder Maven / Gradle / Ivy
/*******************************************************************
* © 2021 SAP SE or an SAP affiliate company. All rights reserved. *
*******************************************************************/
package com.sap.cds.jdbc.spi;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import com.google.common.annotations.Beta;
import com.sap.cds.reflect.CdsBaseType;
@Beta
public interface ValueBinder {
T getValue(ResultSet result, int i, CdsBaseType cdsType, boolean isMediaType) throws SQLException;
void setValue(PreparedStatement pstmt, int i, CdsBaseType cdsType, Object value) throws SQLException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy