DateTime プロパティ
データ型で使用する DateTime 定義を示すデータ型を取得します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
Public Shared ReadOnly Property DateTime As DataType
Get
'使用
Dim value As DataType
value = DataType.DateTime
public static DataType DateTime { get; }
public:
static property DataType^ DateTime {
DataType^ get ();
}
static member DateTime : DataType
static function get DateTime () : DataType
プロパティ値
型: Microsoft.SqlServer.Management.Smo. . :: . .DataType
データ型の DateTime 定義を示す DataType オブジェクト値です。
使用例
Visual Basic
Dim d As DataType
d = New DataType(SqlDataType.DateTime)
PowerShell
$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::DateTime)