home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) 1987,1990 by Oracle Corporation */
-
- #include <ctype.h>
- #include <string.h>
-
- /***********************************************************************/
- /* Define user exit routine to copy from one field to another */
- /* */
- /* Parse assumes that SQL*ReportWriter removes extra spaces between */
- /* fields in the #string */
- /***********************************************************************/
-
- /* This is a sample */
-
- #define SQLCA_STORAGE_CLASS extern
- EXEC SQL INCLUDE SQLCA;
-
- /* Error buffer -- SQL*ReportWriter will raise error if first byte non-null */
- extern char SRWERB[256];
-
- int RWECPF(ue_string)
- char *ue_string;
- {
- EXEC SQL BEGIN DECLARE SECTION;
- VARCHAR field[240];
- VARCHAR value[240];
- EXEC SQL END DECLARE SECTION;
-
- char arg[241];
- char *p;
- char *srw_source;
- char *srw_dest;
- int len;
- int i;
-
- /* copy #string to work buffer */
- arg[240] = '\0';
- strcpy(arg,ue_string);
-
- /* skip over user exit name in #string */
- p = arg;
- while (*p && !isspace(*p)) p++;
- if (*p) p++;
- else goto error;
-
- /* parse #string for source field; null terminate the source name */
- srw_source = p;
- while (*p && !isspace(*p)) p++;
- if ((p == srw_source) || (!*p)) goto error;
- *p++ = '\0';
-
- /* parse #string for destination field; null terminate the dest name */
- srw_dest = p;
- while (*p && !isspace(*p)) p++;
- if (p == srw_dest) goto error;
- *p = '\0';
-
- /* put field value into host variable */
- field.len = strlen(strcpy(field.arr,srw_source));
- EXEC IAF GET :field INTO :value;
-
- /* put host variable value into field */
- field.len = strlen(strcpy(field.arr,srw_dest));
- EXEC IAF PUT :field VALUES (:value);
-
- return(0);
-
- error:
- strcpy((char *) SRWERB, "Usage: #RWECPF <source> <destination>");
- return(0);
- }
-