Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Populating 10G XE table with time AND date through VB.Net
>>Insert into Vessel_Data (GPS_Date) Values ('19-Mar-2006 12:34:38')
Never, ever rely on implicit datatype conversions:
Insert into Vessel_Data (GPS_Date) Values (TO_DATE('19-Mar-2006 12:34:38','DD-Mon-YYYY hh24:mi:ss'))
HTH Cheers.
Carlos. Received on Thu Mar 23 2006 - 09:17:50 CST