I have two databases, i wrote a vbscript to take the data from one database, and insert it into another. the problem is that in one database, all of the data is in a single field. so i have too split the data into seperate variables, then write my insert statement. everything now works with the exception of my datetime field.
i insert the date in the format INSERT INTO <table> (<fields>) VALUES ('string', 6/24/04, <number>);
But when i query my table, the datetime field becomes 12:00am
It doesn't show the date!!! I am guessing it has somehting to do with the conversion from string, but i cannot figure it out. does this look familiar to Anyone?!?!?!
i insert the date in the format INSERT INTO <table> (<fields>) VALUES ('string', 6/24/04, <number>);
But when i query my table, the datetime field becomes 12:00am
It doesn't show the date!!! I am guessing it has somehting to do with the conversion from string, but i cannot figure it out. does this look familiar to Anyone?!?!?!