dotConnect for DB2 Documentation
Devart.Data.DB2.DB2Types Namespace / DB2TimeStampOffset Structure / Parse Method / Parse(String,Int32) Method
The string to parse.
An integer value between 0 and 12, determining the number of decimal places of precision.
Example

In This Topic
Parse(String,Int32) Method
In This Topic
Converts the specified System.String representation of a date to its DB2TimeStampOffset equivalent.
Syntax
'Declaration
 
Public Overloads Shared Function Parse( _
   ByVal szTimestamp As String, _
   ByVal precision As Integer _
) As DB2TimeStampOffset
 

Parameters

szTimestamp
The string to parse.
precision
An integer value between 0 and 12, determining the number of decimal places of precision.

Return Value

An DB2TimeStampOffset structure equal to the date represented by the specified System.String.
Example
The following example demonstrates usage of Parse method on a machine that has default Windows XP settings. If you have custom settings or use non-English version of the operating system you must change the format of value parameter.
DB2TimeStampOffset newts = DB2TimeStampOffset.Parse("12/25/2005 3:40:15 PM");
Dim newts As DB2TimeStampOffset = DB2TimeStampOffset.Parse("12/25/2005 3:40:15 PM")
See Also