Class MsqlFieldDesc
java.lang.Object
|
+----MsqlFieldDesc
-
public class MsqlFieldDesc
-
extends Object
MsqlFieldDesc - description of a table column.
Constructors
-
MsqlFieldDesc(String[])
-
MsqlFieldDesc - Constructs a Field Desc from an array of strings.
Methods
-
FieldLength()
-
Return the length of this field.
-
FieldName()
-
Return the name of this field.
-
FieldType()
-
Return the type of this field.
-
IsKey()
-
Return the Key flag for this field.
-
NonNull()
-
Return the NonNull flag for ths field.
-
TableName()
-
Return name of base table containing this field.
-
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