Formula for calculating microseconds [CR #644926]

Moving Data In and Out of Databases > Using binary load format > TIME should read as follows:

TIME data is stored as a 64-bit unsigned quantity that represents a number in microseconds (in other words, 1.0e-6 seconds). Compute the microsecond quantity for a given hour, minute, second, and microsecond (usec):

binaryTimeValue = ( ( (hour * 3600) + (minute * 60) 
+ second ) * 1000000 ) + microsecond