dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteDateTime Structure / SQLiteDateTime Constructor / SQLiteDateTime Constructor(Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32)
The specified year.
The specified month.
The specified day.
The specified hour.
The specified minute.
The specified second.
The specified microsecond.
The hours part of time zone offset relative to UTC.
The minutes part of time zone offset relative to UTC.

In This Topic
    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 year As Integer, _
       ByVal month As Integer, _
       ByVal day As Integer, _
       ByVal hour As Integer, _
       ByVal minute As Integer, _
       ByVal second As Integer, _
       ByVal microsecond As Integer, _
       ByVal tzhour As Integer, _
       ByVal tzminute As Integer _
    )
    public SQLiteDateTime( 
       int year,
       int month,
       int day,
       int hour,
       int minute,
       int second,
       int microsecond,
       int tzhour,
       int tzminute
    )

    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.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also