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

version 1.2, 2003/12/18 10:47:49 version 1.4, 2004/01/19 08:24:37
Line 1 Line 1
 import java.io.ByteArrayOutputStream;  
 import java.io.PrintStream;  
 import java.sql.*;  import java.sql.*;
 import java.util.*;  import java.util.*;
 import com.fmi.jdbc.*;  import com.fmi.jdbc.*;
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.2  
changed lines
  Added in v.1.4


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