link start!
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package oracle.jdbc.driver;
|
||||
|
||||
public interface ClientDataSupport {
|
||||
Object getClientData(Object obj);
|
||||
|
||||
Object removeClientData(Object obj);
|
||||
|
||||
Object setClientData(Object obj, Object obj2);
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package oracle.jdbc.driver;
|
||||
|
||||
public interface Message {
|
||||
String msg(String str, Object obj);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package oracle.jdbc.driver;
|
||||
|
||||
import oracle.jdbc.internal.OracleConnection;
|
||||
|
||||
public interface OracleCloseCallback {
|
||||
void afterClose(Object obj);
|
||||
|
||||
void beforeClose(OracleConnection oracleConnection, Object obj);
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package oracle.jdbc.driver;
|
||||
|
||||
public interface OracleResultSetCache extends oracle.jdbc.internal.OracleResultSetCache {
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package oracle.jdbc.driver;
|
||||
|
||||
import java.sql.Connection;
|
||||
import java.sql.SQLException;
|
||||
import java.sql.Statement;
|
||||
|
||||
interface ScrollRsetStatement {
|
||||
int copyBinds(Statement statement, int i) throws SQLException;
|
||||
|
||||
boolean getAutoRefetch() throws SQLException;
|
||||
|
||||
Connection getConnection() throws SQLException;
|
||||
|
||||
int getMaxFieldSize() throws SQLException;
|
||||
|
||||
String getOriginalSql() throws SQLException;
|
||||
|
||||
OracleResultSetCache getResultSetCache() throws SQLException;
|
||||
|
||||
void notifyCloseRset() throws SQLException;
|
||||
|
||||
void setAutoRefetch(boolean z) throws SQLException;
|
||||
}
|
||||
Reference in New Issue
Block a user