OracleTimeStamp Constructor(Int32,Int32,Int32,Int32,Int32,Int32,OracleDbType)
In This Topic
Initializes a new instance of the
OracleTimeStamp structure with the specified year, month, day, hour, minute, second, and Oracle TIMESTAMP type.
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 OracleDbType _
)
public OracleTimeStamp(
int ,
int ,
int ,
int ,
int ,
int ,
OracleDbType
)
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.
- dbType
- One of the OracleDbType values. May be OracleDbType.TimeStamp, OracleDbType.TimeStampTZ, or OracleDbType.TimeStampLTZ.
See Also