JavaXT
|
|
Field ClassUsed to represent a field in a Recordset.
ConstructorsThere are no public constructors.Public Methodsclone( ) returns Field Used to create a shallow copy of the current field. Does not include the field value. getName( ) returns String Returns the name of the column associated with this field. Returns null if the column name is unknown. getType( ) returns String Returns the column type name (e.g. VARCHAR, INTEGER, BLOB, etc). getClassName( ) returns String Returns the Java class name that is associated with the column type. For example, most JDBC drivers map VARCHAR columns to a java.lang.String. In this case, the method would return "java.lang.String" for the field class name. getTableName( ) returns String Returns the name of the table in which this field is found. Returns null if the table name is unknown. |