Represents the TIME DB2 data type. Encapsulates the TimeSpan .NET data type.
[Visual Basic]
Public Structure DB2Time
[C#]
public struct DB2Time
[C++]
public value class DB2Time
[C#] The following example demonstrates how to retrieve a single TIME column value from a table.
[C#]
public static string getParam(DB2Connection conn)
{
string mySelectQuery = "SELECT * FROM CL_SCHED";
DB2Command myCommand = new DB2Command(mySelectQuery, conn);
DB2DataReader reader = myCommand.ExecuteReader();
if (reader.Read())
{
DB2Time selectValue = reader.GetDB2Time(3);
if (!selectValue.IsNull) { return selectValue.ToString(); }
}
return "NULL";
}
Any public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Any instance members are not guaranteed to be thread safe.