All Packages Class Hierarchy This Package Previous Next Index
Class oracle.sql.ROWID
oracle.sql.ROWID
- public class ROWID
The ROWID class is a representation of the Oracle ROWID datatype.
It is intended to be immutable. The user should not try to change
its contents once it is constructed.
-
isConvertibleTo(Class)
- Test whether this data object can be converted to the specified
Java data type.
-
stringValue()
- Convert this data object into a String.
-
toJdbc()
- Convert this data object into its default Java object type.
toJdbc
public Object toJdbc() throws SQLException
- Convert this data object into its default Java object type.
- Returns:
- the data value as a Java object.
- Throws: SQLException
- if any of the lower layer code throws an exception.
isConvertibleTo
public boolean isConvertibleTo(Class jClass)
- Test whether this data object can be converted to the specified
Java data type.
- Parameters:
- jClass
specifies - the Java data type to test against.
- Returns:
- true if this data object is convertible to the
specified Java class, and a corresponding xxxValue()
method is available; otherwise, a false is returned.
stringValue
public String stringValue()
- Convert this data object into a String.
- Returns:
- the data value in String representation.
All Packages Class Hierarchy This Package Previous Next Index