This topic has not yet been rated - Rate this topic

OracleDateTime Constructor

.NET Framework 1.1
Note: This namespace, class, or member is supported only in version 1.1 of the .NET Framework.

Initializes a new instance of the OracleDateTime structure.

Overload List

Initializes a new instance of the OracleDateTime structure with the specified System.DateTime.

[Visual Basic] Public Sub New(DateTime)
[C#] public OracleDateTime(DateTime);
[C++] public: OracleDateTime(DateTime);
[JScript] public function OracleDateTime(DateTime);

Initializes a new instance of the OracleDateTime structure using the supplied number of ticks.

[Visual Basic] Public Sub New(Long)
[C#] public OracleDateTime(long);
[C++] public: OracleDateTime(__int64);
[JScript] public function OracleDateTime(long);

Initializes a new instance of the OracleDateTime structure from an existing OracleDateTime object.

[Visual Basic] Public Sub New(OracleDateTime)
[C#] public OracleDateTime(OracleDateTime);
[C++] public: OracleDateTime(OracleDateTime);
[JScript] public function OracleDateTime(OracleDateTime);

Initializes a new instance of the OracleDateTime structure using the supplied parameters to initialize the year, month, and day of the new structure.

[Visual Basic] Public Sub New(Integer, Integer, Integer)
[C#] public OracleDateTime(int, int, int);
[C++] public: OracleDateTime(int, int, int);
[JScript] public function OracleDateTime(int, int, int);

Initializes a new instance of the OracleDateTime structure using the supplied parameters to initialize the year, month, day, and calendar of the new structure.

[Visual Basic] Public Sub New(Integer, Integer, Integer, Calendar)
[C#] public OracleDateTime(int, int, int, Calendar);
[C++] public: OracleDateTime(int, int, int, Calendar*);
[JScript] public function OracleDateTime(int, int, int, Calendar);

Initializes a new instance of the OracleDateTime structure using the supplied parameters to initialize the year, month, day, hour, minute, and second of the new structure.

[Visual Basic] Public Sub New(Integer, Integer, Integer, Integer, Integer, Integer)
[C#] public OracleDateTime(int, int, int, int, int, int);
[C++] public: OracleDateTime(int, int, int, int, int, int);
[JScript] public function OracleDateTime(int, int, int, int, int, int);

Initializes a new instance of the OracleDateTime structure using the supplied parameters to initialize the year, month, day, hour, minute, second, for the specified calendar of the new structure.

[Visual Basic] Public Sub New(Integer, Integer, Integer, Integer, Integer, Integer, Calendar)
[C#] public OracleDateTime(int, int, int, int, int, int, Calendar);
[C++] public: OracleDateTime(int, int, int, int, int, int, Calendar*);
[JScript] public function OracleDateTime(int, int, int, int, int, int, Calendar);

Initializes a new instance of the OracleDateTime structure using the supplied parameters to initialize the year, month, day, hour, minute, second, and millisecond of the new structure.

[Visual Basic] Public Sub New(Integer, Integer, Integer, Integer, Integer, Integer, Integer)
[C#] public OracleDateTime(int, int, int, int, int, int, int);
[C++] public: OracleDateTime(int, int, int, int, int, int, int);
[JScript] public function OracleDateTime(int, int, int, int, int, int, int);

Initializes a new instance of the OracleDateTime structure using the supplied parameters to initialize the year, month, day, hour, minute, second, millisecond for the specified calendar of the new structure.

[Visual Basic] Public Sub New(Integer, Integer, Integer, Integer, Integer, Integer, Integer, Calendar)
[C#] public OracleDateTime(int, int, int, int, int, int, int, Calendar);
[C++] public: OracleDateTime(int, int, int, int, int, int, int, Calendar*);
[JScript] public function OracleDateTime(int, int, int, int, int, int, int, Calendar);

See Also

OracleDateTime Structure | OracleDateTime Members | System.Data.OracleClient Namespace

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.