14 lines
351 B
Java
14 lines
351 B
Java
package oracle.jdbc;
|
|
|
|
import java.sql.SQLException;
|
|
|
|
public interface StructMetaData extends OracleResultSetMetaData {
|
|
String getAttributeJavaName(int i) throws SQLException;
|
|
|
|
int getLocalColumnCount() throws SQLException;
|
|
|
|
String getOracleColumnClassName(int i) throws SQLException;
|
|
|
|
boolean isInherited(int i) throws SQLException;
|
|
}
|