StoredProcedure.ImplementationType プロパティ
ストアド プロシージャの実装の種類を取得します。値の設定も可能です。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Standalone Or SfcPropertyFlags.SqlAzureDatabase Or SfcPropertyFlags.Design, _
"TransactSql")> _
Public Property ImplementationType As ImplementationType
Get
Set
'使用
Dim instance As StoredProcedure
Dim value As ImplementationType
value = instance.ImplementationType
instance.ImplementationType = value
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design,
"TransactSql")]
public ImplementationType ImplementationType { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Standalone|SfcPropertyFlags::SqlAzureDatabase|SfcPropertyFlags::Design,
L"TransactSql")]
public:
property ImplementationType ImplementationType {
ImplementationType get ();
void set (ImplementationType value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Standalone|SfcPropertyFlags.SqlAzureDatabase|SfcPropertyFlags.Design,
"TransactSql")>]
member ImplementationType : ImplementationType with get, set
function get ImplementationType () : ImplementationType
function set ImplementationType (value : ImplementationType)
プロパティ値
型: Microsoft.SqlServer.Management.Smo.ImplementationType
ストアド プロシージャの実装の種類を示す ImplementationType オブジェクト値です。
説明
このプロパティは、ストアド プロシージャが SQL Server 共通言語ランタイム (CLR) 型で実装されるのか、または Transact-SQL で実装されるのかを示します。 ストアド プロシージャが SQL Server CLR 型で実装される場合、ExecutionContextPrincipal プロパティ、AssemblyName プロパティ、ClassName プロパティ、および MethodName プロパティの値が必要です。
使用例
関連項目
参照
Microsoft.SqlServer.Management.Smo 名前空間