All Packages Class Hierarchy This Package Previous Next Index
Class oracle.sql.SQLName
java.lang.Object
|
+----oracle.sql.SQLName
- public class SQLName
- extends Object
-
SQLName(String, OracleConnection)
- Constructor
-
getName()
- The name supplied to the constructor.
-
getSchema()
- The Schema containing the type.
-
getSimpleName()
- The name of the type (within it's schema)
-
getVersion()
- The version of the type.
SQLName
public SQLName(String name,
OracleConnection connection) throws SQLException
- Constructor
- Parameters:
- name - a String identifying a type.
- connection - an OracleConnection that can be used to query the
database about the meaning of the type.
getName
public String getName() throws SQLException
- The name supplied to the constructor. Because of the presence of
synoyms this name may be completely different from getSimpleName.
getSchema
public String getSchema() throws SQLException
- The Schema containing the type.
getSimpleName
public String getSimpleName() throws SQLException
- The name of the type (within it's schema)
getVersion
public int getVersion() throws SQLException
- The version of the type.
All Packages Class Hierarchy This Package Previous Next Index