/***************************************************************************
    copyright     : (C) 1999 by Edwin Glaser
    email         : edwin@pannenleiter.de
    version       : $Id: dbtypes.h,v 1.1.1.1 2000/02/07 21:42:15 ege Exp $
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   * 
 *                                                                         *
 ***************************************************************************/

#ifndef DBTYPES_H
#define DBTYPES_H

/**
  *@author Edwin Glaser
  */
class DBTypes {

public:

  /* return values of DBDataSource::getColumnType ( SQL_C_XXX )
  */
  static const int TypeLong = 4;
  static const int TypeDouble = 8;
  static const int TypeDate = 9;
  static const int TypeTime = 10;
  static const int TypeDateTime = 11;
  static const int TypeBinary = -2;
  static const int TypeString = 1;
};

#endif

Documentation generated by eg@wonko on Sam Feb 19 00:09:53 MET 2000