// -*- mode:C++; tab-width:2; c-basic-offset:2; indent-tabs-mode:nil -*-
//
// Copyright (C) 2000-2005 by Roger Rene Kommer / artefaktur, Kassel, Germany.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public License (LGPL).
//
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// License ACDK-FreeLicense document enclosed in the distribution
// for more for more details.
// This file is part of the Artefaktur Component Development Kit:
// ACDK
//
// Please refer to
// - http://www.acdk.de
// - http://www.artefaktur.com
// - http://acdk.sourceforge.net
// for more information.
//
// $Header: /cvsroot/acdk/acdk/acdk_sql/src/acdk/sql/Types.cpp,v 1.5 2005/02/05 10:45:31 kommer Exp $
#include <acdk.h>
#include "sql.h"
namespace acdk {
namespace sql {
using namespace acdk::lang;
/*
int Types::BIT = -7;
int Types::TINYINT = -6;
int Types::SMALLINT = 5;
int Types::INTEGER = 4;
int Types::BIGINT = -5;
int Types::FLOAT = 6;
int Types::REAL = 7;
int Types::DOUBLE = 8;
int Types::NUMERIC = 2;
int Types::DECIMAL = 3;
int Types::CHAR = 1;
int Types::VARCHAR = 12;
int Types::LONGVARCHAR = -1;
int Types::DATE = 91;
int Types::TIME = 92;
int Types::TIMESTAMP = 93;
int Types::BINARY = -2;
int Types::VARBINARY = -3;
int Types::LONGVARBINARY = -4;
int Types::NULL = 0;
int Types::OTHER = 1111;
int Types::JAVA_OBJECT = 2000;
int Types::DISTINCT = 2001;
int Types::STRUCT = 2002;
int Types::ARRAY = 2003;
int Types::BLOB = 2004;
int Types::CLOB = 2005;
int Types::REF = 2006;
*/
} // sql
} // acdk
|