--- FM2SQL/Attic/Convert.java 2004/11/23 13:00:51 1.87 +++ FM2SQL/Attic/Convert.java 2005/01/21 10:18:33 1.88 @@ -3749,7 +3749,7 @@ class Convert command.append(" values ( "); // add a question marks for every field - for (int i = 0; i < bean.getColumnNames().size() - 1; ++i) + for (int i = 0; i < fieldNames.length - 1; ++i) command.append("?,"); command.append("?)"); return command;