Примечание.
Для доступа к этой странице требуется авторизация. Вы можете попробовать войти или изменить каталоги.
Для доступа к этой странице требуется авторизация. Вы можете попробовать изменить каталоги.
Returns a delimited string that represents the contents of the collection.
Пространство имен: Microsoft.SqlServer.Dts.Tasks.Exec80PackageTask
Сборка: Microsoft.SqlServer.Exec80PackageTask (in microsoft.sqlserver.exec80packagetask.dll)
Синтаксис
'Декларация
Public Overrides Function ToString As String
public override string ToString ()
public:
virtual String^ ToString () override
public String ToString ()
public override function ToString () : String
Возвращаемое значение
A delimited string that contains the contents of the collection.
Замечания
The string returned by this method can be used in the LoadFromString method to load an entire collection of variables with a single method call.
The delimited string uses the following syntax:
return::= 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.
Literal comma (,) or semicolon (;) characters included as part of any argument must be prefaced with a backslash (\) character.
Примечание. |
|---|
| String variables that end in the backslash character have a single space character appended to them during the conversion process, to prevent the possibility that the semicolon used to terminate a variable could be misinterpreted as a literal semicolon character by the LoadFromString method. |
Синхронизация потоков
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.
Платформы
Платформы разработки
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
Целевые платформы
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
См. также
Справочник
VariablesCollection Class
VariablesCollection Members
Microsoft.SqlServer.Dts.Tasks.Exec80PackageTask Namespace
Примечание.