home *** CD-ROM | disk | FTP | other *** search
- /*
- **
- ** sample is a simple example program which adds new employee
- ** records to the personnel data base. Checking is
- ** done to insure the integrity of the data base. The
- ** employee numbers are automatically selected using
- ** the current maximum employee number as the start.
- ** If any employee number is a duplicate, it is
- ** skipped. The program queries the user for data as
- ** follows:
- ** Enter employee name:
- ** Enter employee job:
- ** Enter employee salary:
- ** Enter employee dept:
- **
- ** The program terminates if <end of file> is entered
- ** when the employee name is requested.
- **
- ** If a record is successfully inserted, the following
- ** is printed:
- **
- ** ename added to department dname as employee # nnnnnn
- **
- ** The new employee number is 10 more than the highest
- ** previous employee number.
- **
- ** The following assumes that you are using Microsoft C 5.1/6.0
- **
- ** OS/2 compiling and linking instructions:
- ** C> cl -AL -c -FPc ocisam.c
- ** C> link @ocisamo.mln
- **
- ** MSDOS compiling and linking instructions:
- ** C> cl -AL -c -FPc ocisam.c
- ** C> link @ocisamm.mln
- **
- ** MODIFIED
- ** 01/24/91 Criswell - Declare main void to avoid warning
- ** 11/01/90 Criswell - Microsoft C 6.0 mods.
- ** 07/24/89 Okamura - Use olon() instead of orlon() for V5/V6 compatibility
- **
- */
-
- #include <stdio.h>
- #include <ctype.h>
- /*
- ** DEFINE THE c VERSION OF THE CURSOR (FOR 32 BIT MACHINES)
- */
- struct csrdef
- {
- short csrrc; /* return code */
- short csrft; /* function type */
- unsigned long csrrpc; /* rows processed count */
- short csrpeo; /* parse error offset */
- unsigned char csrfc; /* function code */
- unsigned char csrfil; /* filler */
- unsigned short csrarc; /* reserved, private */
- unsigned char csrwrn; /* warning flags */
- unsigned char csrflg; /* error flags */
- /* *** Operating system dependent *** */
- unsigned int csrcn; /* cursor number */
- struct { /* rowid structure */
- struct {
- unsigned long tidtrba; /* rba of first blockof table */
- unsigned short tidpid; /* partition id of table */
- unsigned char tidtbl; /* table id of table */
- } ridtid;
- unsigned long ridbrba; /* rba of datablock */
- unsigned short ridsqn; /* sequence number of row in block */
- } csrrid;
- unsigned int csrose; /* os dependent error code */
- unsigned char csrchk; /* check byte */
- unsigned char crsfill[30]; /* private, reserved fill */
- };
-
- char *uid = "scott/tiger"; /* username/password */
- char *insert = "INSERT INTO EMP(EMPNO, ENAME, JOB, SAL, DEPTNO) VALUES \
- (:EMPNO, :ENAME, :JOB, :SAL, :DEPTNO)";
- char *select = "SELECT DNAME FROM DEPT WHERE DEPTNO=:1";
- char *maxemp = "SELECT NVL(MAX(EMPNO), 0) + 10 FROM EMP";
- char *selemp = "SELECT ENAME, JOB FROM EMP"; /* find ename, job size */
-
-
- void main()
- {
- int empno, sal, deptno; /* employee number, salary, dept number */
- struct csrdef lda; /* lda area */
- struct csrdef curs[2]; /* and two cursors */
- char *ename, *job, *dept; /* employee name,job and dept */
- short enamel, jobl, deptl;
- char *malloc();
-
- #define LDA &lda
- #define C0 (&curs[0])
- #define C1 (&curs[1])
- #define DUPLICATE_VALUE -9 /* HLI interface return code */
- #define INT 3 /* HLI integer type code */
- #define CHRSTR 5 /* HLI null terminated string type */
- /*
- ** LOGON TO ORACLE, OPEN TWO CURSORS. NOTE: IN MOST SITUATIONS,
- ** THIS SIMPLE PROGRAM EXITS IF ANY ERRORS OCCUR.
- */
- if (olon(LDA, uid, -1, (char *)0, -1, -1))
- {
- errlda(LDA, "olon");
- goto errexit;
- }
-
- if (oopen(C0, LDA, (char *)0, -1, -1, (char *)0, -1))
- {
- errrpt(C0);
- goto errexit;
- }
-
- if (oopen(C1, LDA, (char *)0, -1, -1, (char *)0, -1))
- {
- errrpt(C1);
- goto errexit;
- }
-
- /*
- ** TURN OFF AUTO-COMMIT. NOTE: THE DEFAULT IF OFF, SO THIS COULD
- ** BE OMMITTED.
- */
- if (ocof(LDA))
- {
- errlda(LDA, "ocof");
- goto errexit;
- }
- /*
- ** RETRIEVE THE CURRENT MAXIMUM EMPLOYEE NUMBER
- */
- if (osql3(C0, maxemp, -1)
- || odefin(C0, 1, (unsigned char *)&empno, sizeof(empno),
- INT, -1, (short *)0, (char *)0, -1, -1, (short *)0,
- (short *)0)
- || oexec(C0)
- || ofetch(C0))
- {
- errrpt(C0);
- goto errexit;
- }
-
- /*
- ** DESCRIBE THE COLUMNS TO DETERMINE THE MAX LENGTH OF
- ** THE EMPLOYEE NAME, JOB TITLE.
- */
- if (osql3(C0, selemp, -1)
- || odsc(C0, 1, &enamel, (short *)0, (short *)0, (short *)0,
- (char *)0, (short *)0, (short *)0)
- || odsc(C0, 2, &jobl, (short *)0, (short *)0, (short *)0,
- (char *)0, (short *)0, (short *)0) )
- {
- errrpt(C0);
- goto errexit;
- }
-
- job = malloc(jobl+1); /* don't forget room for null */
- ename = malloc(enamel+1);
-
- /*
- ** PARSE THE INSERT AND SELECT STATEMENTS
- ** DESCRIBE dname SO THAT WE CAN ALLOCATE SPACE
- ** THEN DEFINE dept
- */
- if (osql3(C0, insert, -1))
- {
- errrpt(C0);
- goto errexit;
- }
-
- if (osql3(C1, select, -1)
- || odsc(C1, 1, &deptl, (short *)0, (short *)0, (short *)0,
- (char *)0, (short *)0, (short *)0)
- || odfinn(C1, 1, dept = malloc(deptl+1) , deptl+1, CHRSTR,
- (short *)0, (char *)0, -1, -1, (short *)0, (short *)0) )
- {
- errrpt(C1);
- goto errexit;
- }
-
- /*
- ** BIND SQL SUBSTITUTION VARIABLE VALUES USING BIND BY REFERENCE
- ** STATEMENTS.
- */
-
- if ( obndrv(C0, ":ENAME", -1, ename, (int)enamel+1, CHRSTR,
- -1, (short *)0, (char *)0, -1, -1)
- || obndrv(C0, ":JOB", -1, job, (int)jobl+1, CHRSTR,
- -1, (short *)0, (char *)0, -1, -1)
- || obndrv(C0, ":SAL", -1, (unsigned char *)&sal, sizeof(sal),
- INT, -1, (short *)0, (char *)0, -1, -1)
- || obndrv(C0, ":DEPTNO",-1, (unsigned char *)&deptno, sizeof(deptno),
- INT, -1, (short *)0, (char *)0, -1, -1)
- || obndrv(C0, ":EMPNO", -1, (unsigned char *)&empno, sizeof(empno),
- INT, -1, (short *)0, (char *)0, -1, -1) )
- {
- errrpt(C0);
- goto errexit;
- }
-
- /*
- ** READ THE USER'S INPUT FROM stdin. IF THE EMPLOYEE NAME IS
- ** NOT ENTERED, THEN EXIT. VERIFY THAT THE ENTERED DEPARTMENT
- ** NUMBER IS VALID AND ECHO THE DEPARTMENT'S NAME WHEN DISPLAYING
- ** THE NEW ROW.
- */
- for( ;
- asks("Enter employee name : ", ename) > 0;
- empno += 10)
- {
- asks("Enter employee job : ", job);
- aski("Enter employee salary: ", &sal);
- while (aski("Enter employee dept : ", &deptno) <= 0
- || obindn(C1, 1, (unsigned char *)&deptno, sizeof(deptno),
- INT, -1, (char *)0, -1, -1)
- || oexec(C1)
- || ofetch(C1))
- {
- printf("\nNo such department %d\n", deptno);
- }
-
- /*
- ** EXECUTE THE STATEMENTS. IF A DUPLICATE empno OCCURS, CALCULATE THE
- ** NEXT ONE AND EXECUTE AGAIN.
- */
- while (oexec(C0) == DUPLICATE_VALUE)
- {
- empno += 10;
- }
-
- /*
- ** IF ANY ERROR FROM OEXEC OCCURS AT THIS POINT, EXIT.
- */
- if (C0->csrrc)
- {
- errrpt(C0);
- goto errexit;
- }
-
- /*
- ** COMMIT THE CHANGE TO THE DATABASE.
- */
- if (ocom(LDA))
- {
- errlda(LDA, "ocom");
- goto errexit;
- }
-
- /*
- ** GIVE THE USER SOME FEEDBACK.
- */
- printf("\n%s added to the %s department as employee number %d\n",
- ename, dept, empno);
- }
-
- /*
- ** EITHER AN ERROR, OR USER ENTERED END-OF-FILE FOR EMPLOYEE NAME.
- ** CLOSE THE CURSORS AND LOG OFF FROM ORACLE.
- */
-
- errexit:
- oclose(C0);
- oclose(C1);
- ologof(LDA);
- printf ("\nEnd of the C/ORACLE example program.\n");
- return(1);
- }
-
- /*
- ** errlda AND errrpt PRINT THE ERROR CODE, OTHER INFORMATION.
- */
-
- /*void*/ errrpt(cur)
- struct csrdef *cur; /* pointer to cursor */
- {
- char msg[80];
- printf("ORACLE error: code is %d, op is %d\n",
- (int)cur->csrrc, (int)cur->csrfc);
- oermsg(cur->csrrc, msg);
- printf("%s\n",msg);
- }
-
- /* void */ errlda(lda,msg)
- struct csrdef *lda; /* pointer to the LDA */
- char msg[]; /* user specified message */
- {
- char oertxt[80];
- printf ("LDA error (%s): code is %d\n", msg, (int)lda->csrrc);
- oermsg(lda->csrrc, oertxt);
- printf("%s\n",oertxt);
- }
-
- /*------------------------------------------------------------------------------
- COUNT aski(text,variable)
-
- print the 'text' on STDOUT and read an integer variable from
- SDTIN.
-
- text points to the null terminated string to be printed
- variable points to an integer variable
-
- aski returns a 1 if the variable was read successfully or a
- -1 if -eof- was encountered
- ----------------------------------------------------------------------------- */
-
- int aski(text,variable)
- char text[];
- int *variable;
- {
- char s[20];
- printf(text);
- fflush(stdout);
- if ( gets(s) == (char *)0 )
- return(EOF);
-
- *variable = atoi(s);
- return(1);
- }
-
- /* -----------------------------------------------------------------------------
- COUNT asks(text,variable)
-
- print the 'text' on STDOUT and read up to 'len' characters into
- the buffer pointed to by variable from STDIN.
-
- text points to the null terminated string to be printed
- variable points to a buffer of at least 'len'+1 characters
-
- asks returns the number of character read into the string, or a
- -1 if -eof- was encountered
- ----------------------------------------------------------------------------- */
-
- int asks(text,variable)
- char text[],variable[];
- {
- printf(text);
- fflush(stdout);
- return( gets(variable) == (char *)0 ? EOF : strlen(variable) );
- }
-