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

net.sourceforge.squirrel_sql.fw.dialects.ConstraintInfo Maven / Gradle / Ivy

package net.sourceforge.squirrel_sql.fw.dialects;

import java.util.Vector;


public class ConstraintInfo extends Object
{
  String fkTable;
  String fkTableSchema;
  String pkTable;
  String pkTableSchema;
   String fkName;
   Vector fkCols;
  Vector pkCols;
  short updateRule;
  short deleteRule;

   public ConstraintInfo(String fkTable,
                         String fkTableSchema,
                         String pkTable,
                         String pkTableSchema,
                         String fkName,
                         Vector fkCols,
                         Vector pkCols,
                         short deleteRule,
                         short updateRule)
   {
      this.fkTable = fkTable;
      this.fkTableSchema = fkTableSchema;
      this.pkTable = pkTable;
      this.pkTableSchema = pkTableSchema;
      this.fkName = fkName;
      this.fkCols = fkCols;
      this.pkCols = pkCols;
      this.deleteRule = deleteRule;
      this.updateRule = updateRule;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy