home *** CD-ROM | disk | FTP | other *** search
/ Freelog 42 / Freelog042.iso / Alu / Ancestrologie / Sources / InterBase_WI-V6.0.1-server.ZIP / examples / api / api8.c < prev    next >
C/C++ Source or Header  |  2001-01-05  |  5KB  |  183 lines

  1. /*
  2.  *    Program type:  API Interface
  3.  *
  4.  *    Description:
  5.  *        This program updates a blob data type.
  6.  *        Project descriptions are added for a set of projects.
  7.  * The contents of this file are subject to the Interbase Public
  8.  * License Version 1.0 (the "License"); you may not use this file
  9.  * except in compliance with the License. You may obtain a copy
  10.  * of the License at http://www.Inprise.com/IPL.html
  11.  *
  12.  * Software distributed under the License is distributed on an
  13.  * "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
  14.  * or implied. See the License for the specific language governing
  15.  * rights and limitations under the License.
  16.  *
  17.  * The Original Code was created by Inprise Corporation
  18.  * and its predecessors. Portions created by Inprise Corporation are
  19.  *
  20.  * Copyright (C) 2000 Inprise Corporation
  21.  * All Rights Reserved.
  22.  * Contributor(s): ______________________________________.
  23.  */
  24.  
  25.  
  26. #include <stdlib.h>
  27. #include <string.h>
  28. #include <ibase.h>
  29. #include <stdio.h>
  30. #include "example.h"
  31.  
  32. #define PROJLEN     5
  33. #define BUFLEN      512
  34.  
  35. char ISC_FAR*    get_line (void);
  36.  
  37. static char *Proj_data[] =
  38. {
  39.     "VBASE",
  40.         "Design a video data base management system for ",
  41.         "controlling on-demand video distribution.",
  42.         0,
  43.     "DGPII",
  44.         "Develop second generation digital pizza maker ",
  45.         "with flash-bake heating element and ",
  46.         "digital ingredient measuring system.",
  47.         0,
  48.     "GUIDE",
  49.         "Develop a prototype for the automobile version of ",
  50.         "the hand-held map browsing device.",
  51.         0,
  52.     "MAPDB",
  53.         "Port the map browsing database software to run ",
  54.         "on the automobile model.",
  55.         0,
  56.     "HWRII",
  57.         "Integrate the hand-writing recognition module into the ",
  58.         "universal language translator.",
  59.         0,
  60.     0
  61. };
  62.  
  63. int Inp_ptr = 0;
  64.  
  65. int main (ARG(int, argc), ARG(char **, argv))
  66. ARGLIST(int argc)
  67. ARGLIST(char **argv)                         
  68. {
  69.     char                proj_id[PROJLEN + 1];
  70.     char                upd_stmt[BUFLEN + 1];
  71.     ISC_QUAD            blob_id;
  72.     isc_blob_handle     blob_handle = NULL;
  73.     isc_db_handle       DB = NULL;           /* database handle */
  74.     isc_tr_handle       trans = NULL;        /* transaction handle */
  75.     long                status[20];          /* status vector */
  76.     XSQLDA ISC_FAR    * sqlda;
  77.     unsigned short      len;
  78.     char ISC_FAR*       line;
  79.     int                 rec_cnt = 0;
  80.     char                empdb[128];
  81.  
  82.     if (argc > 1)
  83.         strcpy(empdb, argv[1]);
  84.     else
  85.         strcpy(empdb, "employee.gdb");
  86.  
  87.     strcpy(upd_stmt, "UPDATE project SET proj_desc = ? WHERE proj_id = ?");
  88.  
  89.     if (isc_attach_database(status, 0, empdb, &DB, 0, NULL))
  90.         isc_print_status(status);
  91.  
  92.     /*
  93.      *  Set-up the SQLDA for the update statement.
  94.      */
  95.  
  96.     sqlda = (XSQLDA ISC_FAR *) malloc(XSQLDA_LENGTH(2));
  97.     sqlda->sqln = 2;
  98.     sqlda->sqld = 2;
  99.     sqlda->version = 1;
  100.  
  101.     sqlda->sqlvar[0].sqldata = (char ISC_FAR *) &blob_id;
  102.     sqlda->sqlvar[0].sqltype = SQL_BLOB;
  103.     sqlda->sqlvar[0].sqllen  = sizeof(ISC_QUAD);
  104.  
  105.     sqlda->sqlvar[1].sqldata = proj_id;
  106.     sqlda->sqlvar[1].sqltype = SQL_TEXT;
  107.     sqlda->sqlvar[1].sqllen  = 5;
  108.  
  109.     if (isc_start_transaction(status, &trans, 1, &DB, 0, NULL))
  110.         isc_print_status(status);
  111.  
  112.     /*
  113.      *  Get the next project id and update the project description.
  114.      */
  115.     line = get_line();
  116.     while (line)
  117.     {
  118.         strcpy(proj_id, line);
  119.         printf("\nUpdating description for project:  %s\n\n", proj_id);
  120.  
  121.         blob_handle = 0;
  122.         if (isc_create_blob(status, &DB, &trans, &blob_handle, &blob_id))
  123.         {
  124.             ERREXIT(status, 1)
  125.         }
  126.         line = get_line();
  127.         while (line)
  128.         {
  129.             printf("  Inserting segment:  %s\n", line);
  130.             len = (unsigned short)strlen(line);
  131.  
  132.             if (isc_put_segment(status, &blob_handle, len, line))
  133.             {
  134.                 ERREXIT (status, 1)
  135.             }
  136.             line = get_line();
  137.         }
  138.  
  139.         if (isc_close_blob(status, &blob_handle))
  140.         {
  141.             ERREXIT(status, 1)
  142.         }
  143.  
  144.         if (isc_dsql_execute_immediate(status, &DB, &trans, 0, upd_stmt, 1,
  145.                                        sqlda))
  146.         {
  147.             ERREXIT (status, 1)
  148.         }
  149.  
  150.         if (isc_sqlcode(status) == 0)
  151.             rec_cnt++;
  152.         else
  153.             printf("Input error -- no project record with key: %s\n", proj_id);
  154.         line = get_line();
  155.     }
  156.   
  157.     if (isc_rollback_transaction (status, &trans))
  158.     {
  159.         ERREXIT(status, 1)
  160.     }
  161.     printf("\n\nAdded %d project descriptions.\n", rec_cnt);
  162.  
  163.     if (isc_detach_database(status, &DB))
  164.     {
  165.         ERREXIT(status, 1)
  166.     }
  167.  
  168.     free(sqlda);
  169.  
  170.     return 0;
  171. }
  172.  
  173.  
  174. /*
  175.  *    Get the next input line, which is either a project id
  176.  *    or a project description segment.
  177.  */
  178.  
  179. char *get_line (void)
  180. {
  181.     return Proj_data[Inp_ptr++];
  182. }
  183.