Documentation Comments
Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.
Reality V15.0 ()
: Class RealColumnMetaData (RealSQL-JDBC) (realcolumnmetadata.html)
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.northgateis.reality.realsql.RealColumnMetaData
The RealColumnMetaData class is used as a container for the column METADATA returned from the Reality SQL Server on completion of the PREPARE phase of an SQL query that returns a ResultSet.
ResultSet
,
RealSQLResultSetMetaData
Constructor Summary | |
RealColumnMetaData(RealRowParser row)
Constructs an RealSQLColumnMetaData object from the specified row. |
Method Summary | |
java.lang.String | getColumnLabel() Retrieves the column label, if none assigned this defaults to the column name. |
java.lang.String | getColumnName() Retrieves the column name. |
int | getDisplayLength() Retrieves the maximum display length for this column. |
java.lang.String | getOwnerName() Retrieves the schema (owner) name to which table this column belongs. |
int | getPrecision() Retrieves the column precision. |
int | getRealSQLType() Retrieves the Reality SQL Type. |
int | getScale() Retrieves the column scale. |
int | getSQLType() Retrieves the JDBC SQL Type. |
java.lang.String | getTableName() Retrieves the table name to which this column belongs. |
boolean | isAutoIncrement() Indicates whether the column is automatically numbered, thus read-only. |
boolean | isCaseSensitive() Indicates whether a column's case matters. |
boolean | isCurrency() Indicates whether the column is a cash value. |
boolean | isDefinitelyWritable() Indicates whether a write on the column will definitely succeed. |
boolean | isNullable() Indicates the nullability of values in the designated column. |
boolean | isReadOnly() Indicates whether a column is read-only. |
boolean | isSearchable() Indicates whether the column can be used in a where clause. |
boolean | isSigned() Indicates whether values in the column are signed numbers. |
boolean | isWritable() Indicates whether it is possible for a write on the column to succeed. |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Constructor Detail |
public RealColumnMetaData(RealRowParser row) throws java.sql.SQLException
RealSQLColumnMetaData
object from the specified row.
row
- containing the column metadata.Method Detail |
public java.lang.String getOwnerName()
public java.lang.String getTableName()
public java.lang.String getColumnName()
public java.lang.String getColumnLabel()
public int getRealSQLType()
RealTypes
public int getPrecision()
public int getScale()
public int getDisplayLength()
public int getSQLType()
Types
public boolean isAutoIncrement()
public boolean isCaseSensitive()
public boolean isCurrency()
public boolean isDefinitelyWritable()
public boolean isNullable()
public boolean isReadOnly()
public boolean isSearchable()
public boolean isSigned()
public boolean isWritable()
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |