dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlTimeStamp Structure / PgSqlTimeStamp Constructor / PgSqlTimeStamp Constructor(Int32,Int32,Int32)
The specified year.
The specified month.
The specified day.

In This Topic
    PgSqlTimeStamp Constructor(Int32,Int32,Int32)
    In This Topic
    Initializes a new instance of the PgSqlTimeStamp structure with the specified year, month, and day.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal year As Integer, _
       ByVal month As Integer, _
       ByVal day As Integer _
    )
    public PgSqlTimeStamp( 
       int year,
       int month,
       int day
    )

    Parameters

    year
    The specified year.
    month
    The specified month.
    day
    The specified day.
    Remarks
    Note that this overload initializes the PgSqlTimeStamp structure in date-only mode, which means that ToString methods do not include the time part of the PgSqlTimeStamp.
    See Also