OracleTimeStamp Constructor(Int32,Int32,Int32,Int32,Int32,Int32,Int32,String,OracleDbType)
In This Topic
Initializes a new instance of the
OracleTimeStamp structure with the specified year, month, day, hour, minute, second, nanosecond, time zone, 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 Integer, _
ByVal As String, _
ByVal As OracleDbType _
)
public OracleTimeStamp(
int ,
int ,
int ,
int ,
int ,
int ,
int ,
string ,
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.
- nanosecond
- The specified nanosecond.
- timeZone
- A System.String that represents the time zone.
- dbType
- One of the OracleDbType values. May be OracleDbType.TimeStamp, OracleDbType.TimeStampTZ, or OracleDbType.TimeStampLTZ.
See Also