link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -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 {
}