niagara-ax/decompiled/oracle/jdbc/rowset/OracleJoinable.java
2026-03-17 13:31:18 -07:00

27 lines
731 B
Java

package oracle.jdbc.rowset;
import java.sql.SQLException;
import javax.sql.rowset.Joinable;
public interface OracleJoinable extends Joinable {
int[] getMatchColumnIndexes() throws SQLException;
String[] getMatchColumnNames() throws SQLException;
void setMatchColumn(int i) throws SQLException;
void setMatchColumn(String str) throws SQLException;
void setMatchColumn(int[] iArr) throws SQLException;
void setMatchColumn(String[] strArr) throws SQLException;
void unsetMatchColumn(int i) throws SQLException;
void unsetMatchColumn(String str) throws SQLException;
void unsetMatchColumn(int[] iArr) throws SQLException;
void unsetMatchColumn(String[] strArr) throws SQLException;
}