Diff for /FM2SQL/Attic/Convert.java between versions 1.12 and 1.13

version 1.12, 2004/01/16 10:21:01 version 1.13, 2004/01/16 11:23:49
Line 304  class Convert Line 304  class Convert
   }    }
   
   
   public static void update(String source, String destination, Vector names, Vector layouts, Vector selects, Vector creates, int mode) throws Exception    public static void update(String source, String destination, Vector names, Vector layouts, Vector selects, Vector creates, Vector ids,int mode) throws Exception
   {    {
     FM2SQL.ProgressDialog dialog = null;      FM2SQL.ProgressDialog dialog = null;
     if (FM2SQL.fmInstance != null)      if (FM2SQL.fmInstance != null)
Line 397  class Convert Line 397  class Convert
         command.append(convertText((String)bean.getColumnNames().get(size-1))+" = ?");          command.append(convertText((String)bean.getColumnNames().get(size-1))+" = ?");
         PreparedStatement pstm = beanDest.getConnection().prepareStatement(command.toString());          PreparedStatement pstm = beanDest.getConnection().prepareStatement(command.toString());
         System.out.println(command);          System.out.println(command);
           System.exit(0);
         int rowCount = bean.getRowCount(query);          int rowCount = bean.getRowCount(query);
         while ((row = bean.getNextRow()) != null)          while ((row = bean.getNextRow()) != null)
         {          {

Removed from v.1.12  
changed lines
  Added in v.1.13


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