public static int getRowPrefetch(PreparedStatement stmt) throws SQLException { OracleStatement oracleStmt = stmt.unwrap(OracleStatement.class); return oracleStmt.getRowPrefetch(); }
public static void setRowPrefetch(PreparedStatement stmt, int value) throws SQLException { OracleStatement oracleStmt = stmt.unwrap(OracleStatement.class); oracleStmt.setRowPrefetch(value); }
public static void clearDefines(DruidPooledPreparedStatement stmt) throws SQLException { OracleStatement oracleStmt = stmt.unwrap(OracleStatement.class); oracleStmt.clearDefines(); }