testZ40.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.    
  28. int
  29. main(void)
  30.   char t1[100];
  31.   long cnt;
  32.   int k1,j=0;
  33.   EXEC SQL
  34.   DECLARE CURS1 CURSOR FOR
  35.    ( SELECT  k1+:j, t1
  36.     FROM ZTBL0
  37. --  WHERE k1 == 10
  38.     )
  39.     ;
  40.   
  41.  EXEC SQL
  42.   DECLARE CURS2 CURSOR FOR
  43.  (   SELECT  k1+:j, t1
  44.     FROM ZTBL0
  45. --  WHERE k1 == 10
  46.   )  
  47.    ;
  48.  
  49.   $ WHENEVER SQLERROR GOTO errexit;
  50.   $ WHENEVER NOT FOUND GOTO exit;
  51.   fprintf(stderr,"Deleting each 5th row of ZTBL0n");
  52.   $ open CURS1;
  53.   while(1)
  54.     {
  55.       $ fetch CURS1 into :k1, :t1;
  56.       printf("k1='%d',t1='%s'n",k1,t1);
  57.       if ( k1 == 5)
  58.         {
  59.           
  60.         EXEC SQL
  61.            DELETE FROM ZTBL0
  62.           WHERE CURRENT OF CURS1 ;
  63.         
  64.         }
  65.       t1[0]=0;
  66.     }
  67.  exit:
  68.   fprintf(stderr,"End of Table ZTBL0n");
  69.   $ close CURS1;
  70.   $ WHENEVER NOT FOUND GOTO exit1;
  71.   fprintf(stderr,"Second pass - show updated tablen");
  72.   $ OPEN CURS2;
  73.   
  74.   while(1) 
  75.     {
  76.       $ fetch CURS2 into :k1, :t1;
  77.       printf("k1='%d',t1='%s'n",k1,t1);
  78.     }
  79.   
  80. exit1:
  81.   
  82.   fprintf(stderr,"End of Table 2n");
  83.   
  84.   $ close CURS2;
  85.   $ commit work;
  86.   return 0;
  87. errexit:
  88.   fprintf(stderr,"Error occured in test 11n");
  89.   return 0;
  90. }