/******************************************************************************* * Copyright (c) 2008 Cambridge Semantics Incorporated. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * File: $Source$ * Created by: Matthew Roy ( <a href="mailto:mroy@cambridgesemantics.com">mroy@cambridgesemantics.com </a>) * Created on: Jul 16, 2008 * Revision: $Id$ * * Contributors: * Cambridge Semantics Incorporated - initial API and implementation *******************************************************************************/ package org.openanzo.jdbc.container; /** * List of database types * * @author Matthew Roy ( <a href="mailto:mroy@cambridgesemantics.com">mroy@cambridgesemantics.com</a>) * */ public enum DBTypes { /** DB2 type */ DB2, /** Server DB2 type */ ServerDB2, /** HSQL type */ HSQL, /** ServerHSQL type */ ServerHSQL, /** H2 type */ H2, /** ServerH2 type */ ServerH2, /** Postgres type */ Postgres, /** Server Postgres type */ ServerPostgres, /** Oracle type */ Oracle, /** ServerOracle type */ ServerOracle, /** MSSQL type */ MSSQL, /** Server MSSQL type */ ServerMSSQL }