Class SQLColumnSpec
- java.lang.Object
-
- com.orchestranetworks.addon.dataexchange.sql.SQLColumnSpec
-
public final class SQLColumnSpec extends java.lang.ObjectDeprecated.Since 2.3.0, replaced bySQLField.Defines attributes for column of SQL databases.- Since:
- 2.2.0
-
-
Constructor Summary
Constructors Constructor Description SQLColumnSpec()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description SQLDataTypegetDataType()Deprecated.Returns an instance ofSQLDataType, that is used to identify generic SQL data types.java.lang.StringgetName()Deprecated.Returns value of column name.voidsetDataType(SQLDataType dataType)Deprecated.Sets value for column data type, that isSQLDataTypeobject.voidsetName(java.lang.String name)Deprecated.Sets value for column name.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Deprecated.Returns value of column name.
-
setName
public void setName(java.lang.String name)
Deprecated.Sets value for column name.
-
getDataType
public SQLDataType getDataType()
Deprecated.Returns an instance ofSQLDataType, that is used to identify generic SQL data types.
-
setDataType
public void setDataType(SQLDataType dataType)
Deprecated.Sets value for column data type, that isSQLDataTypeobject.
-
-