Time 메서드
Returns values for any valid time of day between 00:00:00 and 23:59:59:9999999. It has a length of at least eight positions and contains the time in hours, minutes, seconds and fractional seconds.
네임스페이스: Microsoft.SqlServer.Management.Smo
어셈블리: Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)
구문
‘선언
Public Shared Function Time ( _
scale As Integer _
) As DataType
‘사용 방법
Dim scale As Integer
Dim returnValue As DataType
returnValue = DataType.Time(scale)
public static DataType Time(
int scale
)
public:
static DataType^ Time(
int scale
)
static member Time :
scale:int -> DataType
public static function Time(
scale : int
) : DataType
매개 변수
- scale
유형: System. . :: . .Int32
An Int32 value which represents the scale (precision) of the result.
반환 값
유형: Microsoft.SqlServer.Management.Smo. . :: . .DataType
A DataType object value that specifies a Time definition and scale (precision) in the data type.
주의
The returned Time object constructor is initialized with the scale value that determines the precision of the Time object.
예
Visual Basic
Dim dt As DataType
dt = New DataType(SqlDataType.Time)
PowerShell
$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::Time)