link start!
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
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;
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package oracle.jdbc.rowset;
|
||||
|
||||
import java.sql.SQLException;
|
||||
import javax.sql.RowSet;
|
||||
import javax.sql.rowset.Predicate;
|
||||
|
||||
public interface OraclePredicate extends Predicate {
|
||||
boolean evaluate(Object obj, int i) throws SQLException;
|
||||
|
||||
boolean evaluate(Object obj, String str) throws SQLException;
|
||||
|
||||
boolean evaluate(RowSet rowSet);
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package oracle.jdbc.rowset;
|
||||
|
||||
import javax.sql.rowset.spi.XmlReader;
|
||||
|
||||
public interface OracleWebRowSetXmlReader extends XmlReader {
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package oracle.jdbc.rowset;
|
||||
|
||||
import javax.sql.rowset.spi.XmlWriter;
|
||||
|
||||
public interface OracleWebRowSetXmlWriter extends XmlWriter {
|
||||
}
|
||||
Reference in New Issue
Block a user