Convert an Spotfire S+ timeDate object to standard JDBC Timestamp string

DESCRIPTION:

Converts a timeDate vector to a character vector in the standard format expected by java.sql.Timestamp: yyyy-mm-dd hh:mm:ss.fffffffff (in GMT)

USAGE:

jdbcTimeDate(data)

ARGUMENTS:

data
A timeDate vector.

VALUE:

A character vector in the specified format.

SEE ALSO:

EXAMPLES:

my.td <- timeDate(julian=1:10, ms=rep(5000, 10))
jdbcTimeDate(my.td)