/ FIX tables don't use temporary files except if specified as do it. */ /
| 279 | /* FIX tables don't use temporary files except if specified as do it. */ |
| 280 | /***********************************************************************/ |
| 281 | bool TDBFIX::IsUsingTemp(PGLOBAL) |
| 282 | { |
| 283 | // Not ready yet to handle using a temporary file with mapping |
| 284 | // or while deleting from DBF files. |
| 285 | return ((UseTemp() == TMP_YES && Txfp->GetAmType() != TYPE_AM_MAP && |
| 286 | !(Mode == MODE_DELETE && Txfp->GetAmType() == TYPE_AM_DBF)) || |
| 287 | UseTemp() == TMP_FORCE || UseTemp() == TMP_TEST); |
| 288 | } // end of IsUsingTemp |
| 289 | |
| 290 | /***********************************************************************/ |
| 291 | /* FIX Access Method opening routine (also used by the BIN a.m.) */ |
no test coverage detected