SQLiteDateTime Constructor(Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32)
In This Topic
Initializes a new instance of the
SQLiteDateTime structure with the specified year, month, day, hour, minute, second, and microsecond and with time zone offset in hours and minutes.
Syntax
'Declaration
Public Function New( _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
)
public SQLiteDateTime(
int ,
int ,
int ,
int ,
int ,
int ,
int ,
int ,
int
)
Parameters
- year
- The specified year.
- month
- The specified month.
- day
- The specified day.
- hour
- The specified hour.
- minute
- The specified minute.
- second
- The specified second.
- microsecond
- The specified microsecond.
- tzhour
- The hours part of time zone offset relative to UTC.
- tzminute
- The minutes part of time zone offset relative to UTC.
See Also