IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 30, 2006, 6:08:56 PM (20 years ago)
Author:
jhoblitt
Message:

merge p0/2 types -> pxMode/pxConfig
add initial p0 support: p0search, p0 tables, p0 funcs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/pxtables.c

    r6256 r6261  
    44    PS_ASSERT_PTR_NON_NULL(config, false);
    55
     6    if (!newExpCreateTable(config->database)) {
     7        psError(PS_ERR_UNKNOWN, false, "database access failed");
     8        return false;
     9    }
     10    if (!newImfileCreateTable(config->database)) {
     11        psError(PS_ERR_UNKNOWN, false, "database access failed");
     12        return false;
     13    }
    614    if (!rawScienceExpCreateTable(config->database)) {
    715        psError(PS_ERR_UNKNOWN, false, "database access failed");
     
    917    }
    1018    if (!rawImfileCreateTable(config->database)) {
     19        psError(PS_ERR_UNKNOWN, false, "database access failed");
     20        return false;
     21    }
     22    if (!p1PendingExpCreateTable(config->database)) {
    1123        psError(PS_ERR_UNKNOWN, false, "database access failed");
    1224        return false;
     
    6779    psFree(dbPassword);
    6880
     81    if (!newExpDropTable(config->database)) {
     82        psError(PS_ERR_UNKNOWN, false, "database access failed");
     83        return false;
     84    }
     85    if (!newImfileDropTable(config->database)) {
     86        psError(PS_ERR_UNKNOWN, false, "database access failed");
     87        return false;
     88    }
    6989    if (!rawScienceExpDropTable(config->database)) {
    7090        psError(PS_ERR_UNKNOWN, false, "database access failed");
     
    7292    }
    7393    if (!rawImfileDropTable(config->database)) {
     94        psError(PS_ERR_UNKNOWN, false, "database access failed");
     95        return false;
     96    }
     97    if (!p1PendingExpDropTable(config->database)) {
    7498        psError(PS_ERR_UNKNOWN, false, "database access failed");
    7599        return false;
Note: See TracChangeset for help on using the changeset viewer.