Diff for /FM2SQL/Attic/DBBean.java between versions 1.32 and 1.36

version 1.32, 2004/09/20 09:00:58 version 1.36, 2004/10/19 11:12:19
Line 653  public class DBBean Line 653  public class DBBean
           // if(resultSet.getObject(i)!=null) System.out.println(resultSet.getObject(i));            // if(resultSet.getObject(i)!=null) System.out.println(resultSet.getObject(i));
           try            try
           {            {
             byte[] b = resultSet.getBytes(i);  
             String utf8 = null;              String utf8 = null;
             if (metaData instanceof ResultSetMetaDataExt)              if (metaData instanceof ResultSetMetaDataExt)
               {
               byte[] b = resultSet.getBytes(i);
               
               if (metaData instanceof ResultSetMetaDataExt)
               utf8 = (b == null) ? null : new String(b);                utf8 = (b == null) ? null : new String(b);
             else              else
               utf8 = (b == null) ? null : new String(b, "UTF-8");                utf8 = (b == null) ? null : new String(b, "UTF-8");
             utf8 = (utf8 == null) ? null : new String(utf8.getBytes("UTF-8"), "UTF-8");              }
                else
                 utf8=resultSet.getString(i);
                   
                   //  utf8 = (utf8 == null) ? null : new String(utf8.getBytes("UTF-8"), "UTF-8");
             tableRow.addElement(utf8);              tableRow.addElement(utf8);
               
           } catch (Exception e)            } catch (Exception e)
           {            {
             System.out.println("Hey I Got an error" + e);              System.out.println("Hey I Got an error" + e);
               e.printStackTrace();
           }            }
           m_columnClasses.addElement(java.lang.String.class);            m_columnClasses.addElement(java.lang.String.class);
         }          }
Line 748  public class DBBean Line 757  public class DBBean
     } catch (Exception e)      } catch (Exception e)
     {      {
       // TODO remove        // TODO remove
       if (FM2SQL.fmInstance != null)        if (FM2SQL.fmInstance != null&&Convert.debug)
         FM2SQL.showErrorDialog("Error caught!! \n Query was  " + query + " \n", "Debug Info");          FM2SQL.showErrorDialog("Error caught!! \n Query was  " + query + " \n", "Debug Info");
         e.printStackTrace();
     }      }
   
     return result;      return result;
Line 1529  public class DBBean Line 1539  public class DBBean
     ResultSet result = this.result;      ResultSet result = this.result;
     String subQuery = query.substring(query.lastIndexOf(table) + table.length() + 1);      String subQuery = query.substring(query.lastIndexOf(table) + table.length() + 1);
     System.out.println("subQuery " + subQuery);      System.out.println("subQuery " + subQuery);
     makeQuery("select " + id + " from " + getQC() + table + getQC() + subQuery+"order by  "+id, numHits);      makeQuery("select " + getQC()+id+getQC() + " from " + getQC() + table + getQC() + subQuery, numHits);
     while (true)      while (true)
     {      {
       Vector vec = getNextRow();        Vector vec = getNextRow();

Removed from v.1.32  
changed lines
  Added in v.1.36


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