home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) Oracle Corporation 1989. All rights reserved. */
- /*
- NAME
- samtex - Sample program to demonstrate the use of otex()
- FUNCTION
- Updates 2 employees in the EMP table. It will logon to ORACLE as
- scott/tiger and update the SAL and COMM fields of employees 7788 and 7902.
- One of the employees is updated by 1s, and the other is updated by 10s.
- NOTES
- This is by no means a flashy example, and should be used just as a guide
- for writing code with otex().
-
- To build and run SAMTEX using the Microsoft C 6.0 compiler:
-
- C> cl -AL -FPc -c samtex.c
- C> link @samtex[o|m].mln (samtexo.mln for OS/2, samtexm for MSDOS)
- C> samtex
-
- These guidelines assume that the Microsoft C compiler is installed in
- the \MSC directory.
- OWNER
- Okamura
- DATE
- 05/24/89
- MODIFIED
- Criswell 01/24/91 - Declare main void to avoid MSC6 warning
- Criswell 11/01/90 - Change above comments to reflect MSC 6.0
- Okamura 08/15/89 - production
- Okamura 07/18/89 - set initialize workmem to NULL
- Okamura 06/02/89 - modify for V6.0.27.1
-
- */
- #include <stdio.h>
- #include <stdlib.h>
-
- #define DEFITERS 50
- #define DEFUID "scott/tiger"
- #define EBL 90
-
- struct csrdef /* cursor data area */
- {
- char dum[64];
- };
- typedef struct csrdef csrdef;
- typedef struct csrdef ldadef; /* lda is the same as a csr */
-
- void main(argc, argv)
- int argc;
- char *argv[];
- {
- char *uid;
- char *stmt1 = "UPDATE EMP SET SAL = :1, COMM = :2, DEPTNO = :3 "
- "WHERE EMPNO = :4";
- char *stmt2 = "UPDATE EMP SET SAL = :1, COMM = :2, DEPTNO = :3 "
- "WHERE EMPNO = :4";
- char *stmt3 = "COMMIT";
- int sal, empno, comm, deptno;
- int sal2, empno2, comm2, deptno2;
- int i;
- int iters;
- char errbuf[EBL];
- int err;
- int nexe;
- csrdef lda;
- csrdef *curarr[3];
- void* sbiarr[3];
- void* bufp1[4];
- void* bufp2[4];
- size_t bufl1[4];
- size_t bufl2[4];
- short type1[4];
- short type2[4];
- char *fmtp1[4];
- char *fmtp2[4];
- short fmtl1[4];
- short fmtl2[4];
- short *indp1[4];
- short *indp2[4];
- void *workmem = NULL;
-
- /* get interations */
- iters = DEFITERS;
- uid = DEFUID;
-
- /* Logon */
- if ( err = olon(&lda, uid, -1, NULL, -1, 0) )
- {
- printf("Logon failed\n");
- exit(8);
- }
-
- /* Open cursor */
- curarr[0] = (csrdef *)malloc(sizeof(csrdef));
- curarr[1] = (csrdef *)malloc(sizeof(csrdef));
- curarr[2] = (csrdef *)malloc(sizeof(csrdef));
-
- if ( err = oopen(curarr[0], &lda, NULL, 0, -1, NULL, -1) )
- {
- printf("Open cursor failed\n");
- goto badexit;
- }
- if ( err = oopen(curarr[1], &lda, NULL, 0, -1, NULL, -1) )
- {
- printf("Open cursor failed\n");
- goto badexit;
- }
- if ( err = oopen(curarr[2], &lda, NULL, 0, -1, NULL, -1) )
- {
- printf("Open cursor failed\n");
- goto badexit;
- }
-
- /* Parse */
- if ( err = osql3(curarr[0], stmt1, -1) )
- {
- printf("Parse failed\n");
- goto badexit;
- }
- if ( err = osql3(curarr[1], stmt2, -1) )
- {
- printf("Parse failed\n");
- goto badexit;
- }
- if ( err = osql3(curarr[2], stmt3, -1) )
- {
- printf("Parse failed\n");
- goto badexit;
- }
- /*
- ** Bind by reference and position
- ** First bind variable in SQL statement should go in the first element
- ** of the array (bufp1[0], bufl[0], etc.). Bind variable names are
- ** not relevant. Note that the format and format length of the bind
- ** variable do not matter for ORACLE integer datatype (SQLT_INT). Format
- ** is only relevant for the packed decimal datatype.
- */
- bufp1[0] = (void*)&sal; /* Bind value buffer */
- bufl1[0] = sizeof(sal); /* size of buffer */
- type1[0] = 3; /* SQLT_INT */
- indp1[0] = NULL; /* Indicator variable */
- bufp1[1] = (void*)&comm;
- bufl1[1] = sizeof(comm);
- type1[1] = 3;
- indp1[1] = NULL;
- bufp1[2] = (void*)&deptno;
- bufl1[2] = sizeof(deptno);
- type1[2] = 3;
- indp1[2] = NULL;
- bufp1[3] = (void*)&empno;
- bufl1[3] = sizeof(empno);
- type1[3] = 3;
- indp1[3] = NULL;
-
- bufp2[0] = (void*)&sal2;
- bufl2[0] = sizeof(sal2);
- type2[0] = 3;
- indp2[0] = NULL;
- bufp2[1] = (void*)&comm2;
- bufl2[1] = sizeof(comm2);
- type2[1] = 3;
- indp2[1] = NULL;
- bufp2[2] = (void*)&deptno2;
- bufl2[2] = sizeof(deptno2);
- type2[2] = 3;
- indp2[2] = NULL;
- bufp2[3] = (void*)&empno2;
- bufl2[3] = sizeof(empno2);
- type2[3] = 3;
- indp2[3] = NULL;
-
- sbiarr[0] = NULL;
- if ( err = osbndp(curarr[0], 4, bufp1, bufl1, type1, indp1,
- fmtp1, fmtl1, malloc, &sbiarr[0]) )
- {
- printf("Bind failed (array)\n");
- goto badexit;
- }
- sbiarr[1] = NULL;
- if ( err = osbndp(curarr[1], 4, bufp2, bufl2, type2, indp2,
- fmtp2, fmtl2, malloc, &sbiarr[1]) )
- {
- printf("Bind failed (array)\n");
- goto badexit;
- }
- sbiarr[2] = NULL; /* COMMIT has no bind variables */
-
- sal = 0; /* initialize bind values */
- comm = 0;
- deptno = 15;
- empno = 7788;
-
- sal2 = 0;
- comm2 = 0;
- deptno2 = 99;
- empno2 = 7902;
-
- /* Execute */
- /*
- ** Transaction Execute
- ** This loop will update the COMM fields of the two employees. They will
- ** both start at zero. One will increment by ones, and the other by tens.
- */
- printf(" This sample program will update the COMM fields for\n");
- printf(" employee 7788 and 7902. Both COMM fields will initially be\n");
- printf(" set to 0. Then one will be incremented by ones, and the\n");
- printf(" other by tens.\n\n");
-
- printf("Doing %d iterations . . . ", iters);
- for ( i = 0; i < iters; i++, sal++, sal2 += 10, comm++, comm2 += 10 )
- if ( err = otex(curarr, 3, sbiarr, malloc,
- &workmem, &nexe) )
- {
- printf("Execute failed\n");
- goto badexit;
- }
- free(workmem); /* free memory that was allocated by otex() */
- printf("done\n");
-
- /* Close Cursors */
- if ( err = oclose(curarr[0]) )
- {
- printf("Close cursor failed\n");
- goto badexit;
- }
- if ( err = oclose(curarr[1]) )
- {
- printf("Close cursor failed\n");
- goto badexit;
- }
- if ( err = oclose(curarr[2]) )
- {
- printf("Close cursor failed\n");
- goto badexit;
- }
-
- /* Logoff */
- if ( err = ologof(&lda) )
- {
- printf("Logoff failed\n");
- goto badexit;
- }
- free(sbiarr[0]); /* free memory allocated by osbndp */
- free(sbiarr[1]);
- free(curarr[0]); /* free cursor data areas */
- free(curarr[1]);
- free(curarr[2]);
- exit(0);
-
- badexit:
- oerhms( &lda, (short)err, errbuf, EBL ); /* get error message */
- errbuf[EBL-1] = '\0';
- printf("Error: %s\n", errbuf);
- ologof(&lda);
- free(sbiarr[0]);
- free(sbiarr[1]);
- free(curarr[0]);
- free(curarr[1]);
- free(curarr[2]);
- exit(8);
- }