--- FM2SQL/Attic/DBBean.java 2004/07/06 10:23:30 1.26 +++ FM2SQL/Attic/DBBean.java 2004/07/27 10:41:36 1.29 @@ -612,8 +612,18 @@ public class DBBean // container fields try { - tableRow.addElement(new Double(resultSet.getDouble(i))); - m_columnClasses.addElement(Double.class); + Double value =new Double(resultSet.getDouble(i)); + + + // tableRow.addElement(new Double(resultSet.getDouble(i))); + String tVal =value.toString(); + tVal = tVal.substring(tVal.indexOf('.')+1); + boolean checkMe = tVal.length()==1&&tVal.equals("0"); + // System.out.println("check was"+checkMe+" "+tVal); + if(checkMe) + tableRow.addElement(new Integer(value.intValue())); + else + tableRow.addElement(value); } catch (Exception e) { @@ -1354,7 +1364,7 @@ public class DBBean String tVal =value.toString(); tVal = tVal.substring(tVal.indexOf('.')+1); boolean checkMe = tVal.length()==1&&tVal.equals("0"); - System.out.println("check was"+checkMe+" "+tVal); + // System.out.println("check was"+checkMe+" "+tVal); if(checkMe) tableRow.addElement(new Integer(value.intValue())); else @@ -1545,5 +1555,26 @@ public class DBBean { useNormanToUnicodeMapper = b; } + /** + * + */ + protected void closeAllConnections() + { + Enumeration enumeration = connectionPool.elements(); + while(enumeration.hasMoreElements()) + { + ConnectionPool conPol =(ConnectionPool)enumeration.nextElement(); + try + { + System.out.println(conPol); + conPol.con.close(); + } catch (SQLException e) + { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + + } } \ No newline at end of file