I have an oracle table with a column of the DATE datatype. There are values in there with the precision of a second... i.e. 20070601 16:30:23
When selecting from that table via perl dbi, I get '01-JUN-07' and the precision of the time has been lost. Since the dbi does not have the concept of a "session" I cannot issue the
Does anyone know how to select from a date column via dbi and preserve the time precision?
Thanks in advance.