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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  sql.h  -  interface of GNU SQL run-time library    
  3.  *                
  4.  *  This file is a part of GNU SQL Server
  5.  *
  6.  *  Copyright (c) 1996, 1997, Free Software Foundation, Inc
  7.  *  Developed at the Institute of System Programming
  8.  * 
  9.  *  This program is free software; you can redistribute it and/or modify
  10.  *  it under the terms of the GNU General Public License as published by
  11.  *  the Free Software Foundation; either version 2 of the License, or
  12.  *  (at your option) any later version.
  13.  *
  14.  *  This program is distributed in the hope that it will be useful,
  15.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  *  GNU General Public License for more details.
  18.  *
  19.  *  You should have received a copy of the GNU General Public License
  20.  *  along with this program; if not, write to the Free Software
  21.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22.  *
  23.  *  Contacs: gss@ispras.ru
  24.  *
  25.  */
  26. #ifndef __SQL_H__
  27. #define __SQL_H__
  28. #include <gnusql/setup_os.h>
  29. #include <assert.h>
  30. #define DEF_ERR(CODE,ERRstr)  CODE,
  31. typedef enum
  32. {
  33. #include "errors.h"
  34.   ERR_LAST
  35. } ERRORS;
  36. #undef DEF_ERR
  37. struct module {
  38.   char   *db_host;
  39.   void   *svc;
  40.   i4_t   segment;
  41.   char   *modname;
  42. };
  43. struct sqlca
  44. {
  45.   int   sqlcode;
  46.   char *errmsg;
  47. };
  48. extern struct sqlca gsqlca;
  49. typedef struct
  50. {
  51.   i4_t       type;
  52.   i4_t       length;
  53.   /*  i4_t       scale; */ /* to map Cobol & PL/1 data types */
  54.   i4_t       flags;
  55.   void      *valptr;
  56.   i4_t      *indptr;
  57. } gsql_parm;
  58. typedef struct
  59. {
  60.   i4_t       count;
  61.   i4_t       sectnum;
  62.   i4_t       command;
  63.   i4_t       options;
  64.   gsql_parm *prm;
  65. } gsql_parms;
  66. #define _SQLCODE SQLCODE
  67. #define SQLCODE gsqlca.sqlcode
  68. /* some functions from other/sql_types.c : for client and server parts */
  69. int  SQL__disconnect __P((int commit));
  70. void SQL__runtime  __P((struct module *mdl,gsql_parms *args));
  71. int  SQL__cache __P((int new_cache_limit));
  72. #define _SQL_commit()   SQL__disconnect(-2)
  73. #define _SQL_rollback() SQL__disconnect(0)
  74. #endif