22 lines
621 B
Java
22 lines
621 B
Java
package oracle.jdbc.internal;
|
|
|
|
import java.sql.SQLException;
|
|
|
|
public interface OraclePreparedStatement extends oracle.jdbc.OraclePreparedStatement, OracleStatement {
|
|
void enterExplicitCache() throws SQLException;
|
|
|
|
void enterImplicitCache() throws SQLException;
|
|
|
|
void exitExplicitCacheToActive() throws SQLException;
|
|
|
|
void exitExplicitCacheToClose() throws SQLException;
|
|
|
|
void exitImplicitCacheToActive() throws SQLException;
|
|
|
|
void exitImplicitCacheToClose() throws SQLException;
|
|
|
|
void setCheckBindTypes(boolean z);
|
|
|
|
void setInternalBytes(int i, byte[] bArr, int i2) throws SQLException;
|
|
}
|