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

liquibase.executor.jvm.SqlTypeValue Maven / Gradle / Ivy

There is a newer version: 4.28.0
Show newest version
package liquibase.executor.jvm;

import liquibase.util.JdbcUtils;

import java.sql.PreparedStatement;

/**
 * Interface to be implemented for setting values for more complex database specific
 * types not supported by the standard setObject method.
 * 

*

Implementations perform the actual work of setting the actual values. They must * implement the callback method setTypeValue which can throw SQLExceptions * that will be caught and translated by the calling code. This callback method has * access to the underlying Connection via the given PreparedStatement object, if that * should be needed to create any database-specific objects. * * @author Spring Framework * @see java.sql.Types * @see java.sql.PreparedStatement#setObject */ interface SqlTypeValue { /** * Constant that indicates an unknown (or unspecified) SQL type. * Passed into setTypeValue if the original operation method * does not specify a SQL type. * * @see java.sql.Types */ int TYPE_UNKNOWN = JdbcUtils.TYPE_UNKNOWN; /** * Set the type value on the given PreparedStatement. * * @param ps the PreparedStatement to work on * @param paramIndex the index of the parameter for which we need to set the value * @param sqlType SQL type of the parameter we are setting * @param typeName the type name of the parameter (optional) * @throws java.sql.SQLException if a SQLException is encountered setting parameter values * (that is, there's no need to catch SQLException) * @see java.sql.Types * @see java.sql.PreparedStatement#setObject */ void setTypeValue(PreparedStatement ps, int paramIndex, int sqlType, String typeName); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy