ExecuteSQLTask.CodePage Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the code page to use when translating variable values that are stored as Unicode wide chars to multi-bytes. Translation occurs either when storing values to or extracting values from databases.

Namespace:   Microsoft.SqlServer.Dts.Tasks.ExecuteSQLTask
Assembly:  Microsoft.SqlServer.SQLTask (in Microsoft.SqlServer.SQLTask.dll)

Syntax

public uint CodePage { get; set; }
public:
property unsigned int CodePage {
    virtual unsigned int get() sealed;
    virtual void set(unsigned int value) sealed;
}
abstract CodePage : uint32 with get, set
override CodePage : uint32 with get, set
Public Property CodePage As UInteger

Property Value

Type: System.UInt32

An uint containing the code page to use for translation.

Implements

IDTSExecuteSQL.CodePage

Remarks

For more information on valid return values, see Add or Delete a Task or a Container in a Control Flow.

See Also

ExecuteSQLTask Class
Microsoft.SqlServer.Dts.Tasks.ExecuteSQLTask Namespace

Return to top