| Package | Description |
|---|---|
| com.orchestranetworks.addon.dataexchange.sql |
Classes and interfaces to define mappings in EBX® Data Exchange Add-on SQL import and export.
|
| com.orchestranetworks.addon.dex.mapping |
Classes and interfaces to configure mapping between source and target applications.
|
| Modifier and Type | Method and Description |
|---|---|
SQLDataType |
SQLColumnSpec.getDataType()
Deprecated.
Returns an instance of
SQLDataType, that is used to identify generic SQL data types. |
static SQLDataType |
SQLDataType.parse(int type) |
static SQLDataType |
SQLDataType.parse(int type,
String name) |
static SQLDataType |
SQLDataType.parse(String typeName) |
static SQLDataType |
SQLDataType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLDataType[] |
SQLDataType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
void |
SQLColumnSpec.setDataType(SQLDataType dataType)
Deprecated.
Sets value for column data type, that is
SQLDataType object. |
| Modifier and Type | Method and Description |
|---|---|
SQLDataType |
SQLField.getDataType()
Returns an instance of
SQLDataType used to identify generic SQL data types. |
| Modifier and Type | Method and Description |
|---|---|
void |
SQLField.setDataType(SQLDataType sqlDataType)
Sets the field data type value, or
SQLDataType object value. |
| Constructor and Description |
|---|
SQLField(String name,
String label,
SQLDataType sqlDataType)
Used to create a SQL field with the specified name, label, data type.
|
SQLField(String name,
String label,
SQLDataType sqlDataType,
FieldAttribute fieldAttribute)
Used to create a SQL field with the specified name, label, data type and
FieldAttribute enumeration. |