pupans.h
上传用户:dgyhgb
上传日期:2007-01-07
资源大小:676k
文件大小:2k
源码类别:

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  inpop.h  -  Answer codes of Storage and Transaction
  3.  *              Synchronization Management System 
  4.  *
  5.  *  This file is a part of GNU SQL Server
  6.  *
  7.  *  Copyright (c) 1996, 1997, Free Software Foundation, Inc
  8.  *  Developed at the Institute of System Programming
  9.  *  This file is written by  Vera Ponomarenko
  10.  *
  11.  *  This program is free software; you can redistribute it and/or modify
  12.  *  it under the terms of the GNU General Public License as published by
  13.  *  the Free Software Foundation; either version 2 of the License, or
  14.  *  (at your option) any later version.
  15.  *
  16.  *  This program is distributed in the hope that it will be useful,
  17.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  *  GNU General Public License for more details.
  20.  *
  21.  *  You should have received a copy of the GNU General Public License
  22.  *  along with this program; if not, write to the Free Software
  23.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  24.  *
  25.  *  Contacts:   gss@ispras.ru
  26.  *
  27.  */
  28. #if !defined(__pupans_h__) && !defined(__PR_GLOB_H__)
  29. #define __pupans_h__
  30. /* $Id: pupans.h,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  31. enum {
  32.   OK     =  0,       /* OK */
  33.   NU     = -1,       /* The key of tnis tuple isn't unique */
  34.   NCF    = -2,       /* Incorrect conditions */
  35.   NDR    = -3,       /* Incorrect relation identifier */
  36.   NMS    = -4,       /* Incorrect scan mode */
  37.   NCR    = -5,       /* Current tuple is absent */
  38.   NIOB   = -6,       /* Incorrect object identifier */
  39.   NDSC   = -7,       /* Incorrect scan identifier */
  40.   NDI    = -8,       /* Incorrect index identifier */
  41.   N_SORT = -9,       /* Not sorted */
  42.   H_DBL  = -10,      /* Has doublicates */
  43.   D_DRCTN =-11,      /* Sort directions are not matched */
  44.   N_EQV  = -12,      /* Objects are not equivalent */
  45.   EMFL   = -13,      /* The filter is empty */
  46.   EOSCAN = -14,      /* End of scan */
  47.   NO_SUCH_SEG  = -15 /* No such segment */
  48. };
  49. #endif