Class MsqlFieldDesc

java.lang.Object
   |
   +----MsqlFieldDesc

public class MsqlFieldDesc
extends Object
MsqlFieldDesc - description of a table column.

Constructors

o MsqlFieldDesc(String[])
MsqlFieldDesc - Constructs a Field Desc from an array of strings.

Methods

o FieldLength()
Return the length of this field.
o FieldName()
Return the name of this field.
o FieldType()
Return the type of this field.
o IsKey()
Return the Key flag for this field.
o NonNull()
Return the NonNull flag for ths field.
o TableName()
Return name of base table containing this field.
o toString()
MsqlFieldDesc - Constructs a Field Desc from an array of strings.

Constructors

MsqlFieldDesc
 public MsqlFieldDesc(String row[])
MsqlFieldDesc - Constructs a Field Desc from an array of strings.

Methods

 TableName
 public String TableName()
Return name of base table containing this field.
 FieldName
 public String FieldName()
Return the name of this field.
 FieldType
 public int FieldType()
Return the type of this field.
 FieldLength
 public int FieldLength()
Return the length of this field.
 NonNull
 public boolean NonNull()
Return the NonNull flag for ths field.
 IsKey
 public boolean IsKey()
Return the Key flag for this field.
 toString
 public String toString()
MsqlFieldDesc - Constructs a Field Desc from an array of strings.
Overrides:
toString in class Object