/* @tier easy @module mm @transform master-dbio */ /* * mm_io_0003.pgc - 마스터 보조 DBIO (ECPG) [tier=easy] */ #include #include #include "txcore.h" #include "txcore_dbio.h" #include "mm_io_0003.h" EXEC SQL INCLUDE sqlca; int mm_io_0003_fetch(const char *key, long *out_amount) { EXEC SQL BEGIN DECLARE SECTION; char h_key[20]; long h_amt; short h_ind; EXEC SQL END DECLARE SECTION; if (!key || !out_amount) return TX_EINVAL; strncpy(h_key, key, sizeof(h_key) - 1); h_key[sizeof(h_key) - 1] = '\0'; EXEC SQL SELECT max(credit_lim) INTO :h_amt:h_ind FROM mst_deposit WHERE prod_cd = :h_key; if (sqlca.sqlcode == TX_SQL_NOTFOUND) return TX_ENOENT; if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("mm_io_0003_fetch"); return TX_EDB; } if (h_ind < 0) { *out_amount = 0; return TX_ENOENT; } *out_amount = h_amt; return TX_OK; } int mm_io_0003_touch(const char *key, long amount) { EXEC SQL BEGIN DECLARE SECTION; char h_key[20]; long h_amt; EXEC SQL END DECLARE SECTION; if (!key) return TX_EINVAL; strncpy(h_key, key, sizeof(h_key) - 1); h_key[sizeof(h_key) - 1] = '\0'; h_amt = amount; EXEC SQL UPDATE mst_product SET credit_lim = :h_amt, upd_ts = now() WHERE prod_cd = :h_key AND block_yn = 'A'; if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("mm_io_0003_touch"); return TX_EDB; } if (sqlca.sqlerrd[2] == 0) return TX_ENOENT; return TX_OK; } long mm_io_0003_total(const char *biz_date) { EXEC SQL BEGIN DECLARE SECTION; char h_bd[9]; char h_grp[20]; long h_sub; long h_tot; EXEC SQL END DECLARE SECTION; if (!biz_date) return -1; strncpy(h_bd, biz_date, sizeof(h_bd) - 1); h_bd[sizeof(h_bd) - 1] = '\0'; h_tot = 0; EXEC SQL DECLARE mm_io_0003_total_gc CURSOR FOR SELECT dept_cd, coalesce(sum(credit_lim), 0) FROM mst_product WHERE reg_dt = :h_bd GROUP BY dept_cd ORDER BY dept_cd; EXEC SQL OPEN mm_io_0003_total_gc; for (;;) { EXEC SQL FETCH mm_io_0003_total_gc INTO :h_grp, :h_sub; if (sqlca.sqlcode == TX_SQL_NOTFOUND) break; if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("mm_io_0003_total"); EXEC SQL CLOSE mm_io_0003_total_gc; return -1; } h_tot += h_sub; } EXEC SQL CLOSE mm_io_0003_total_gc; return h_tot; }