niagara-ax/decompiled/oracle/jdbc/StructMetaData.java
2026-03-17 13:31:18 -07:00

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;
}