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

com.sap.cds.jdbc.spi.ValueBinder Maven / Gradle / Ivy

There is a newer version: 3.6.1
Show newest version
/*******************************************************************
 * © 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