Package.PackageType 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
패키지를 만든 도구를 식별하는 값을 지정합니다.
public:
property Microsoft::SqlServer::Dts::Runtime::DTSPackageType PackageType { Microsoft::SqlServer::Dts::Runtime::DTSPackageType get(); void set(Microsoft::SqlServer::Dts::Runtime::DTSPackageType value); };
[Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyCategory(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "PropertyCategoryIdentification")]
[Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyDescription(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "PackageTypeDesc")]
public Microsoft.SqlServer.Dts.Runtime.DTSPackageType PackageType { get; set; }
[<Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyCategory(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "PropertyCategoryIdentification")>]
[<Microsoft.SqlServer.Dts.Runtime.Localization.LocalizablePropertyDescription(typeof(Microsoft.SqlServer.Dts.Runtime.Localized), "PackageTypeDesc")>]
member this.PackageType : Microsoft.SqlServer.Dts.Runtime.DTSPackageType with get, set
Public Property PackageType As DTSPackageType
속성 값
패키지를 만든 도구를 식별하는 값을 지정합니다.
- 특성
예제
다음 코드 예제에서는 SSIS 샘플 패키지 중 하나에 대한 패키지 형식을 보여 줍니다.
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
namespace Package_API
{
class Program
{
static void Main(string[] args)
{
Application app = new Application();
Package pkg = new Package();
pkg = app.LoadPackage(@"C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\CalculatedColumns Sample\CalculatedColumns\CalculatedColumns.dtsx", null);
// Show the package type
Console.WriteLine("The package type is {0}", pkg.PackageType);
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Namespace Package_API
Class Program
Shared Sub Main(ByVal args() As String)
Dim app As Application = New Application()
Dim pkg As Package = New Package()
pkg = app.LoadPackage("C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\CalculatedColumns Sample\CalculatedColumns\CalculatedColumns.dtsx", Nothing)
' Show the package type
Console.WriteLine("The package type is {0}", pkg.PackageType)
End Sub
End Class
End Namespace
샘플 출력:
The package type is Default
설명
SSIS 디자이너를 사용하여 패키지를 만든 경우 기본값은 .입니다 DTSDesigner100.