test50.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. int
  28. main(void)
  29. {
  30.   char str[100];
  31.   int int1;
  32.   EXEC SQL
  33.   DECLARE CURS1 CURSOR FOR
  34.     (
  35.       SELECT UNTABID, TABNAME  --, MAX (TABNAME) --, MIN (UNTABID)--COUNT ( DISTINCT TABNAME ) --,TABNAME  -- COUNT (*) !!
  36.       FROM DEFINITION_SCHEMA.SYSTABLES
  37.       WHERE
  38.         UNTABID > 5 --< 9
  39.       AND
  40.         TABNAME >= 'SYSCOLUMNS'
  41.     )
  42. --    GROUP BY UNTABID
  43.  ORDER BY UNTABID
  44.   $ WHENEVER SQLERROR GOTO errexit;
  45.   $ WHENEVER NOT FOUND GOTO exit;
  46.   $ open CURS1;
  47.   while(1)
  48.     {
  49.       $ fetch CURS1 into :int1, :str ;
  50.       fprintf(stderr,"min (UNTABID)='%d' TABNAME='%s'n",int1, str);
  51.     }
  52.  exit:
  53.   fprintf(stderr,"End of Tablen");
  54.   $ close CURS1;
  55.   $ commit work;
  56.   return 0;
  57. errexit:
  58.   fprintf(stderr,"Error occured in test 5n");
  59.   return 1;
  60. }