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

com.sap.cloud.lm.sl.cf.persistence.dialects.DataSourceDialect Maven / Gradle / Ivy

There is a newer version: 1.106.2
Show newest version
package com.sap.cloud.lm.sl.cf.persistence.dialects;

import java.io.InputStream;
import java.math.BigInteger;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

public interface DataSourceDialect {

    String getSequenceNextValueSyntax(String sequenceName);

    InputStream getBinaryStreamFromBlob(ResultSet rs, String columnName) throws SQLException;

    void setBlobAsBinaryStream(PreparedStatement ps, int index, InputStream is) throws SQLException;

    BigInteger getBigInteger(ResultSet rs, String columnName) throws SQLException;

    void setBigInteger(PreparedStatement ps, int index, BigInteger bi) throws SQLException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy