/ Make the Pivot table column list. */ /
| 55 | /* Make the Pivot table column list. */ |
| 56 | /***********************************************************************/ |
| 57 | PQRYRES PivotColumns(PGLOBAL g, const char *tab, const char *src, |
| 58 | const char *picol, const char *fncol, |
| 59 | const char *skcol, const char *host, |
| 60 | const char *db, const char *user, |
| 61 | const char *pwd, int port) |
| 62 | { |
| 63 | PIVAID pvd(tab, src, picol, fncol, skcol, host, db, user, pwd, port); |
| 64 | |
| 65 | return pvd.MakePivotColumns(g); |
| 66 | } // end of PivotColumns |
| 67 | |
| 68 | /* --------------- Implementation of the PIVAID classe --------------- */ |
| 69 |
no test coverage detected