DataType.DateTime2 メソッド
datetime2 は、既存の datetime 型の拡張です。 DateTime2 では、日付範囲と既定の有効桁数が大きくなります。 長さは 19 文字以上です。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
Public Shared Function DateTime2 ( _
scale As Integer _
) As DataType
'使用
Dim scale As Integer
Dim returnValue As DataType
returnValue = DataType.DateTime2(scale)
public static DataType DateTime2(
int scale
)
public:
static DataType^ DateTime2(
int scale
)
static member DateTime2 :
scale:int -> DataType
public static function DateTime2(
scale : int
) : DataType
パラメーター
- scale
型: System.Int32
結果の小数点以下桁数 (有効桁数) を示す Int32 値です。
戻り値
型: Microsoft.SqlServer.Management.Smo.DataType
データ型の DateTime2 定義を示す DataType オブジェクト値です。
説明
返される DateTime2 オブジェクト コンストラクターは、DateTime2 オブジェクトの有効桁数を決定する小数点以下桁数の値で初期化されます。
使用例
Visual Basic
Dim dt As DataType
dt = New DataType(SqlDataType.DateTime2, 10)
PowerShell
$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::DateTime2, 10)