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

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

package net.sourceforge.squirrel_sql.fw.dialects;

import java.util.List;


public class TableIndexInfo extends Object
{
  String table;
  String tableSchema;
  String ixName;
  List cols;
  boolean unique;

   public TableIndexInfo(String table, String tableSchema, String ixName, List cols, boolean unique)
   {
      this.table = table;
      this.tableSchema = tableSchema;
      this.ixName = ixName;
      this.cols = cols;
      this.unique = unique;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy