다음을 통해 공유


VariablesCollection.LoadFromString Method

Creates and adds one or more elements, from a delimited string, to the end of the collection.

네임스페이스: Microsoft.SqlServer.Dts.Tasks.Exec80PackageTask
어셈블리: Microsoft.SqlServer.Exec80PackageTask (in microsoft.sqlserver.exec80packagetask.dll)

구문

‘선언
Public Shared Function LoadFromString ( _
    str As String _
) As VariablesCollection
public static VariablesCollection LoadFromString (
    string str
)
public:
static VariablesCollection^ LoadFromString (
    String^ str
)
public static VariablesCollection LoadFromString (
    String str
)
public static function LoadFromString (
    str : String
) : VariablesCollection

매개 변수

  • str
    A delimited string using the following syntax:

    str::= variable**;variable;**...

    variable::=name**,datatype,**value

    The name argument contains the name of the PkgVariable to be added.

    The datatype argument contains the data type of the PkgVariable to be added.

    The value argument contains the value of the PkgVariable to be added.

    Any literal comma (,) or semicolon (;) characters included as part of any argument must be prefaced with a backslash (\) character.

반환 값

A VariablesCollection object containing the PkgVariable objects loaded from the string specified in str.

스레드 보안

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

플랫폼

개발 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

대상 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

참고 항목

참조

VariablesCollection Class
VariablesCollection Members
Microsoft.SqlServer.Dts.Tasks.Exec80PackageTask Namespace