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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  svr_lib.h  -  interface of high level library for GNU SQL RPC server 
  3.  *                (compiler & interpretator)
  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 Michael Kimelman.
  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. #ifndef __SVR_LIB_H__
  29. #define __SVR_LIB_H__
  30. /* $Id: svr_lib.h,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  31. #include "gsqltrn.h"
  32. extern i4_t rpc_program_id;
  33. i4_t     server_init  __P((i4_t argc, char *args[]));
  34. void    start_processing __P((void));
  35. i4_t     finish_processing __P((void));
  36. call_t *prepare_replacement __P((void));
  37. void    describe_stmt __P((descr_t *d,TXTREF vcb,char mode));
  38. /* transaction server methods prototypes */
  39. result_t* init_compiler  __P((init_params_t*in, struct svc_req *rqstp));
  40. result_t* compile        __P((stmt_info_t  *in, struct svc_req *rqstp));
  41. result_t* del_segment    __P((seg_del_t    *in, struct svc_req *rqstp));
  42. result_t* link_cursor    __P((link_cursor_t*in, struct svc_req *rqstp));
  43. result_t* module_init    __P((string_t     *in, struct svc_req *rqstp));
  44. result_t* execute_stmt   __P((insn_t       *in, struct svc_req *rqstp));
  45. result_t* db_create      __P((void         *in, struct svc_req *rqstp));
  46. #endif