test70.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.   short i=7,k=2;
  32.   char typ;
  33.   int typ1;
  34.   float j=0;
  35.   long cnt;
  36.   EXEC SQL
  37.   DECLARE CURS1 CURSOR FOR
  38.     (
  39.      SELECT AVG (UNTABID) -- COUNT (*) --AVG (NCOLS)
  40.      --COUNT (*) --, MIN (COLNAME) -- ,MAX(COLNAME) ,
  41.                          --UNTABID,COLNO, COLTYPE, COLTYPE1
  42.       FROM DEFINITION_SCHEMA.SYSTABLES --SYSCOLUMNS
  43. --      WHERE 
  44. --        COLNAME>='S' --'SYSCOLUMNS'
  45. --       AND
  46. --         UNTABID>0 --:i
  47. --       AND
  48. --         (COLNAME < (SELECT MAX(COLNAME)
  49. --                     FROM DEFINITION_SCHEMA.SYSTABLES ))
  50. --     GROUP BY UNTABID, COLNAME  --,UNTABID,
  51.     )
  52.   ;
  53.   
  54.   $ WHENEVER SQLERROR GOTO errexit;
  55.   $ WHENEVER NOT FOUND GOTO exit;
  56.   $ open CURS1;
  57.   while(1)
  58.     {
  59.       *str=0;
  60.       $ fetch CURS1 into :j; /*, :str; , :k, :typ, :typ1; */
  61.       fprintf(stderr,"AVG (UNTABID) = %g n",j);
  62.       /*    fprintf(stderr,"UNTABID=%d, MIN (COLNAME)='%s'n",j,str);*/
  63.       /*
  64.         fprintf(stderr,"UNTABID=%d, COLNAME='%s' COLNO=%d "
  65.         "COLTYPE='%d' COTYPE1=%dn",j,str,k,typ,typ1);
  66.         */
  67.     }
  68.  exit:
  69.   fprintf(stderr,"End of Tablen");
  70.   $ close CURS1;
  71.   $ commit work;
  72.   return 0;
  73. errexit:
  74.   return 1;
  75. }