예제 #1
0
 public void SetDataTypeProperties(SSISDataType dataType, int length, int precision, int scale, int codePage)
 {
     if (dataType != SSISDataType.DT_EMPTY)
     {
         OutputColumn.SetDataTypeProperties(DtsUtility.EnumAToEnumB <SSISDataType, DataType>(dataType), length, precision, scale, codePage);
     }
 }
예제 #2
0
 public void SetDataTypeProperties(SSISDataTypeWithProperty sSISDataTypeWithProperty)
 {
     if (sSISDataTypeWithProperty.DataType != SSISDataType.DT_EMPTY)
     {
         OutputColumn.SetDataTypeProperties(DtsUtility.EnumAToEnumB <SSISDataType, DataType>(sSISDataTypeWithProperty.DataType), sSISDataTypeWithProperty.Length, sSISDataTypeWithProperty.Precision, sSISDataTypeWithProperty.Scale, sSISDataTypeWithProperty.CodePage);
     }
 }
예제 #3
0
 public void SetDataTypeProperties(SSISDataType dataType, int length, int precision, int scale, int codePage)
 {
     OutputColumn.SetDataTypeProperties(dataType, length, precision, scale, codePage);
     if (_parentComponent.SourceCode.Length > 0)
     {
         _parentComponent.RebuildProject(null);
     }
 }
예제 #4
0
 public void SetDataTypeProperties(SSISDataType dataType, int length, int precision, int scale, int codePage)
 {
     OutputColumn.SetDataTypeProperties(dataType, length, precision, scale, codePage);
 }