Diff for /FM2SQL/Attic/DBBean.java between versions 1.3 and 1.4

version 1.3, 2004/01/15 13:32:34 version 1.4, 2004/01/19 08:24:37
Line 53  public class DBBean Line 53  public class DBBean
   String url = "";    String url = "";
   DatabaseMetaData dbMetaData;    DatabaseMetaData dbMetaData;
   Vector columnNames;    Vector columnNames;
     Vector ids = new Vector();
   String user = (System.getProperty("user.name") == null) ? "" : System.getProperty("user.name"); //"postgres";    String user = (System.getProperty("user.name") == null) ? "" : System.getProperty("user.name"); //"postgres";
   String passwd = ""; //"3333";//"rogo";    String passwd = ""; //"3333";//"rogo";
   public int maxHits = 10;    public int maxHits = 10;
Line 194  public class DBBean Line 195  public class DBBean
       quoteChar = "\""; // needed for postgres        quoteChar = "\""; // needed for postgres
   }    }
   
     public void setIDVector(Vector ids)
     {
       this.ids = ids;
     }
   
     /** 
      * returns a Vector containing the ID Row Name 
      **/
     public Vector getIDVector()
     {
       return ids;
     }
   /**    /**
    * returns a Vector containing the Tablenames or an error message in the Vector     * returns a Vector containing the Tablenames or an error message in the Vector
    */     */

Removed from v.1.3  
changed lines
  Added in v.1.4


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