User 34fa07fa99
06-12-2006 18:30:49
I get the following exception when trying to use the Exporter:
chemaxon.jchem.db.TransferException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'H1299 (TEST)
FROM temp_sdf_export1
WHERE CD_ID IN(11753) ORDER BY CD_ID' at line 1
at chemaxon.jchem.db.Exporter.writeNext(Exporter.java:346)
at chemaxon.jchem.db.Exporter.writeAll(Exporter.java:363)
I think it is because we are using spaces and parentheses in the column names, so we are going to rename the columns for now but ideally jchem should use a delimiter character, for example, on mysql it's (`).
chemaxon.jchem.db.TransferException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'H1299 (TEST)
FROM temp_sdf_export1
WHERE CD_ID IN(11753) ORDER BY CD_ID' at line 1
at chemaxon.jchem.db.Exporter.writeNext(Exporter.java:346)
at chemaxon.jchem.db.Exporter.writeAll(Exporter.java:363)
I think it is because we are using spaces and parentheses in the column names, so we are going to rename the columns for now but ideally jchem should use a delimiter character, for example, on mysql it's (`).