Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Populating 10G XE table with time AND date through VB.Net

Re: Populating 10G XE table with time AND date through VB.Net

From: Carlos <miotromailcarlos_at_netscape.net>
Date: 23 Mar 2006 07:17:50 -0800
Message-ID: <1143127070.323982.90740@j33g2000cwa.googlegroups.com>


>>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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US