27 lines
731 B
Java
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;
|
|
}
|