Class msql.MsqlFieldDesc
All Packages Class Hierarchy This Package Previous Next Index
Class msql.MsqlFieldDesc
java.lang.Object
|
+----msql.MsqlFieldDesc
- public class MsqlFieldDesc
- extends Object
MsqlFieldDesc - description of a table column.
-
fieldKey
-
-
fieldLength
-
-
fieldName
-
-
fieldNonNull
-
-
fieldType
-
-
tableName
-
-
MsqlFieldDesc(String[])
- MsqlFieldDesc - Constructs a Field Desc from an array of strings.
-
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.
tableName
protected String tableName
fieldName
protected String fieldName
fieldType
protected int fieldType
fieldLength
protected int fieldLength
fieldNonNull
protected boolean fieldNonNull
fieldKey
protected boolean fieldKey
MsqlFieldDesc
public MsqlFieldDesc(String row[])
- MsqlFieldDesc - Constructs a Field Desc from an array of strings.
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
All Packages Class Hierarchy This Package Previous Next Index