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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  pupsi.h  -  External definitions of Storage and Transaction
  3.  *              Synchronization Management System of
  4.  *              GNU SQL server
  5.  *
  6.  *  This file is a part of GNU SQL Server
  7.  *
  8.  *  Copyright (c) 1996, 1997, Free Software Foundation, Inc
  9.  *  Developed at the Institute of System Programming
  10.  *  This file is written by Vera Ponomarenko
  11.  *
  12.  *  This program is free software; you can redistribute it and/or modify
  13.  *  it under the terms of the GNU General Public License as published by
  14.  *  the Free Software Foundation; either version 2 of the License, or
  15.  *  (at your option) any later version.
  16.  *
  17.  *  This program is distributed in the hope that it will be useful,
  18.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  *  GNU General Public License for more details.
  21.  *
  22.  *  You should have received a copy of the GNU General Public License
  23.  *  along with this program; if not, write to the Free Software
  24.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  25.  *
  26.  *  Contacts: gss@ispras.ru
  27.  *
  28.  */
  29. #ifndef __PUPSI_H__
  30. #define __PUPSI_H__
  31. /* $Id: pupsi.h,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  32. #define BD_PAGESIZE        1024
  33. #ifndef GSQL_ROOT_DIR
  34. #  define GSQL_ROOT_DIR "."
  35. #endif 
  36. # define SOC_BUF_SIZE    2*BD_PAGESIZE
  37. enum {
  38.   MERR   =1,
  39.   HERR   =2,
  40.   MJ_PPS =1,
  41.   LJ_PPS =2,
  42.   SN_PPS =3,
  43.   BF_PPS =4,
  44.   TR_PPS =5,
  45.   SR_PPS =6,
  46.   /* scan modes */
  47.   RSC     =1,       /* read                       */
  48.   MSC     =2,       /* modification               */
  49.   DSC     =3,       /* deletion                   */
  50.   WSC     =4,       /* modification and deletion  */
  51.   DBL     =1,       /* duplicates are stayed      */
  52.   NODBL   =0,       /* duplicates are deleted     */
  53.   GROW    =1,       /* grow sorting direction     */
  54.   DECR    =0       /* decrease sorting direction */
  55. };
  56. #endif