public GarpGenericDB(string table, string user, string password)
        {
            app = new Garp.Application();
              app.Login(user, password);

              //Logger.loggInfo("Try to create Table " + table + " with User " + user + " and password " + password, "GCS", "");
              //Logger.loggInfo("...logged in user is " + app.User, "GCS", "");

              _table = app.Tables.Item(table);
              createFields();
              //Logger.loggInfo("Try to create Table is...DONE!", "GCS", "");
        }