All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.squirrel_sql.client.gui.db.SchemaLoadInfo Maven / Gradle / Ivy

Go to download

This is the jar that contains the main application classes which are very specific to SQuirreLSQL.

There is a newer version: 3.5.0
Show newest version
package net.sourceforge.squirrel_sql.client.gui.db;

import java.io.Serializable;

/**
 * new SchemaLoadInfo() creates an object that says: load everything
 */
public class SchemaLoadInfo implements Serializable
{
   public SchemaLoadInfo(String[] tableTypes)
   {
      this.tableTypes = tableTypes;
   }

   /**
    * null means load all Schemas
    */
   public String schemaName;

   /**
    * null means load all types.
    * Should not be set to null because of the enormous
    * amount of Synonyms Oracle provides. 
    */
   public String[] tableTypes;

   public boolean loadProcedures = true;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy