2005/5/9

     
 

DatabaseMetaData.cpp

artefaktur
// -*- 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/DatabaseMetaData.cpp,v 1.5 2005/02/05 10:45:30 kommer Exp $

#include <acdk.h>
#include <acdk/sql/sql.h>

namespace acdk {
namespace sql {

using namespace acdk::lang;

/*
int Connection::bestRowUnknown = 0;
int Connection::bestRowNotPseudo = 1;
int Connection::bestRowPseudo = 2;
int Connection::bestRowTemporary = 0;
int Connection::bestRowTransaction = 1;
int Connection::bestRowSession = 2;
int Connection::procedureResultUnknown = 0;
int Connection::procedureNoResult = 1;
int Connection::procedureReturnsResult = 2;
int Connection::procedureColumnUnknown = 0;
int Connection::procedureColumnIn = 1;
int Connection::procedureColumnInOut = 2;
int Connection::procedureColumnOut = 4;
int Connection::procedureColumnReturn = 5;
int Connection::procedureColumnResult = 3;
int Connection::procedureNoNulls = 0;
int Connection::procedureNullable = 1;
int Connection::procedureNullableUnknown = 2;
int Connection::columnNoNulls = 0;
int Connection::columnNullable = 1;
int Connection::columnNullableUnknown = 2;
int Connection::versionColumnUnknown = 0;
int Connection::versionColumnNotPseudo = 1;
int Connection::versionColumnPseudo = 2;
int Connection::importedKeyCascade = 0;
int Connection::importedKeyRestrict = 1;
int Connection::importedKeySetNull = 2;
int Connection::importedKeyNoAction = 3;
int Connection::importedKeySetDefault = 4;
int Connection::importedKeyInitiallyDeferred = 5;
int Connection::importedKeyInitiallyImmediate = 6;
int Connection::importedKeyNotDeferrable = 7;
int Connection::typeNoNulls = 0;
int Connection::typeNullable = 1;
int Connection::typeNullableUnknown = 2;
int Connection::typePredNone = 0;
int Connection::typePredChar = 1;
int Connection::typePredBasic = 2;
int Connection::typeSearchable = 3;
short Connection::tableIndexStatistic = 0;
short Connection::tableIndexClustered = 1;
short Connection::tableIndexHashed = 2;
short Connection::tableIndexOther = 3;
*/

} // sql
} // acdk