ChrisRChamberlain
Programmer
Hi all
MySql newbie so please be gentle.
Am trying to migrate a VFP database to MySql by creating tables with the following typical code
which succeeds.
When it comes to populating this table on a row by row basis with the following typical data, it fails
The failure is consistent where there are MySql DATETIME fields in the table, otherwise all the tables are populated with the converted VFP data.
Clues as to the error(s) please?
TIA
PDFcommander.com
motrac.co.uk
MySql newbie so please be gentle.
Am trying to migrate a VFP database to MySql by creating tables with the following typical code
Code:
CREATE TABLE FIND_STR (FIND_STR VARCHAR(10) NULL, DATE_STAMP DATETIME NULL) ENGINE=MyISAM DEFAULT CHARSET=latin1
When it comes to populating this table on a row by row basis with the following typical data, it fails
Code:
INSERT INTO FIND_STR (find_str,date_stamp) VALUES ('yeoma',1999-05-30 08:29:53)
Clues as to the error(s) please?
TIA
FAQ184-2483
Chris PDFcommander.com
motrac.co.uk