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

javaxt.sql.Key Maven / Gradle / Ivy

package javaxt.sql;

//******************************************************************************
//**  Key Class
//******************************************************************************
/**
 * Used to represent a unique primary key or a foreign key in a table.
 *
 ******************************************************************************/

public class Key {

	protected String Name;
	protected Table Table;
	protected String Column;

	public String getName() {
		return Name;
	}

	public Table getTable() {
		return Table;
	}

	public String getColumn() {
		return Column;
	}

	@Override
	public String toString() {
		return Table.getName() + "." + Column;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy