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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  * $Id$
  3.  *
  4.  * This file is a part of GNU SQL Server
  5.  *
  6.  * Copyright (c) 1996, Free Software Foundation, Inc
  7.  * Developed at Institute of System Programming of Russian Academy of Science
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify it under
  10.  * the terms of the GNU General Public License as published by the Free
  11.  * Software Foundation; either version 2 of the License, or (at your option)
  12.  * any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful, but WITHOUT
  15.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  16.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  17.  * more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License along with
  20.  * this program; if not, write to the Free Software Foundation, Inc.,
  21.  * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22.  *
  23.  * Contacts: gss@ispras.ru
  24.  */
  25. #include <stdio.h>
  26. #include <stdlib.h>
  27. #include "tests.h"
  28. int
  29. main(void)
  30. {
  31.   char tabname[100],owner[100],credate[100],cretime[100];
  32.   char tabtype[5];
  33.   int untabid,tabd,primindid,nrows;
  34.   short segid,ncols;
  35.   EXEC SQL
  36.   DECLARE CURS1 CURSOR FOR
  37.     (
  38.       SELECT TABNAME,UNTABID --,COLNAME,DEFINITION_SCHEMA.SYSTABLES.UNTABID --OWNER,UNTABID
  39.       FROM DEFINITION_SCHEMA.SYSTABLES --, DEFINITION_SCHEMA.SYSCOLUMNS
  40.       WHERE
  41. -- DEFINITION_SCHEMA.SYSTABLES.UNTABID = DEFINITION_SCHEMA.SYSCOLUMNS.UNTABID
  42. --    AND
  43.         DEFINITION_SCHEMA.SYSTABLES.UNTABID = ANY ( --ALL ( --SOME ( 
  44.         SELECT UNTABID
  45.         FROM DEFINITION_SCHEMA.SYSCOLUMNS
  46. --          WHERE UNTABID < 5
  47.         WHERE COLNAME = 'NCOLS' --'COLNOTO1' --'UNTABID' --'COLNOTO1' --'ABCD'
  48.       )
  49.     )
  50. ;
  51.   $ WHENEVER SQLERROR GOTO errexit;
  52.   $ WHENEVER NOT FOUND GOTO exit;
  53.   $ open CURS1;
  54.   while(1)
  55.     {
  56.       $ fetch CURS1 into :tabname,/*:owner,*/:untabid;
  57.       PRINT_S (tabname, "tabname");
  58. /*
  59.       PRINT_S (owner, "colname");
  60.       PRINT_S (owner, "owner");
  61. */
  62.       PRINT_D (untabid, "untabid");
  63.       PRINT_END;
  64.     }
  65.  exit:
  66.   fprintf(stderr,"End of Table n");
  67.   $ close CURS1;
  68.   $ commit work;
  69.   return 0;
  70. errexit:
  71.   fprintf(stderr,"Error in test 18 !!!!!n");
  72.   return 0;
  73. }