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

com.avaje.ebean.config.PstmtDelegate Maven / Gradle / Ivy

The newest version!
package com.avaje.ebean.config;

import java.sql.PreparedStatement;

/**
 * Unwrap the PreparedStatement to get the specific underlying implementation.
 * 

* This is used to handle specific JDBC driver issues. Typically this means * getting the OraclePreparedStatement to handle Oracle specific issues etc. *

* * @author rbygrave */ public interface PstmtDelegate { /** * Unwrap the PreparedStatement to get the specific underlying implementation. * * @param pstmt * the PreparedStatement coming out of the connection pool * @return the underlying PreparedStatement */ public PreparedStatement unwrap(PreparedStatement pstmt); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy