dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteDateTime Structure / SQLiteDateTime Constructor / SQLiteDateTime Constructor(Int32,Int32,Int32,TimeSpan)
The specified year.
The specified month.
The specified day.
The specified time zone offset.

In This Topic
    SQLiteDateTime Constructor(Int32,Int32,Int32,TimeSpan)
    In This Topic
    Initializes a new instance of the SQLiteDateTime structure with the specified year, month, and day and with time zone offset, specified as System.TimeSpan.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal year As Integer, _
       ByVal month As Integer, _
       ByVal day As Integer, _
       ByVal timeZone As TimeSpan _
    )
    public SQLiteDateTime( 
       int year,
       int month,
       int day,
       TimeSpan timeZone
    )

    Parameters

    year
    The specified year.
    month
    The specified month.
    day
    The specified day.
    timeZone
    The specified time zone offset.
    Remarks
    Note that this overload initializes the SQLiteDateTime structure in date-only mode, which means that ToString methods do not include the time part of the SQLiteDateTime and IsDate is set to true.
    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