Diff for /FM2SQL/Attic/Convert.java between versions 1.86 and 1.88

version 1.86, 2004/11/18 11:17:43 version 1.88, 2005/01/21 10:18:33
Line 2014  class Convert Line 2014  class Convert
   
                     }                      }
                     String tableName = names.get(tbIndex).toString();                      String tableName = names.get(tbIndex).toString();
                     if (indexList.isEmpty())                      if (!indexList.isEmpty())
                     {                      {
                         IndexList idList = (IndexList) indexList.get(0);                          IndexList idList = (IndexList) indexList.get(0);
                         System.out.println("found list " + idList);                          System.out.println("found list " + idList);
Line 3749  class Convert Line 3749  class Convert
   
         command.append(" values ( ");          command.append(" values ( ");
         // add a question marks for every field          // 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("?,");
         command.append("?)");          command.append("?)");
         return command;          return command;

Removed from v.1.86  
changed lines
  Added in v.1.88


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>