Hello, I am using mm mysql JDBC driver to connect WO5 to MySQL, but I am having a problem with INSERT. It seems like WO is executing this command for inserting a new field. INSERT INTO test(ID, abc, def, ghi) VALUES (129, '9999', 'test', 'test') But MySQL does not understand it. It needs a space between the table and fields. This command will work INSERT INTO test (ID, abc, def, ghi) VALUES (129, '9999', 'test', 'test') Is this MySQL or WO's problem? Best, Alex --------------------------------------------------------------------- Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
