IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 7, 2006, 10:36:15 AM (20 years ago)
Author:
jhoblitt
Message:

rename pxConfig database -> dbh

File:
1 edited

Legend:

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

    r6258 r6341  
    55    PS_ASSERT_PTR_NON_NULL(config, NULL);
    66
    7     psArray *exposures = p2PendingExpSelectRowObjects(config->database,
     7    psArray *exposures = p2PendingExpSelectRowObjects(config->dbh,
    88        config->where, MAX_ROWS);
    99    if (!exposures) {
     
    2525        psMetadataAddS32(where, PS_LIST_TAIL, "p2_version", PS_META_REPLACE, "==", exposure->p2_version);
    2626
    27         psArray *images = p2PendingImfileSelectRowObjects(config->database, where, MAX_ROWS);
     27        psArray *images = p2PendingImfileSelectRowObjects(config->dbh, where, MAX_ROWS);
    2828
    2929        p2PendingFrame *frame = p2PendingFrameAlloc(exposure, images);
     
    4343    PS_ASSERT_PTR_NON_NULL(config, NULL);
    4444
    45     psArray *imfiles = p2PendingImfileSelectRowObjects(config->database,
     45    psArray *imfiles = p2PendingImfileSelectRowObjects(config->dbh,
    4646        config->where, MAX_ROWS);
    4747    if (!imfiles) {
     
    5858    PS_ASSERT_PTR_NON_NULL(config, NULL);
    5959
    60     psArray *exps = p2PendingExpSelectRowObjects(config->database,
     60    psArray *exps = p2PendingExpSelectRowObjects(config->dbh,
    6161        config->where,
    6262        MAX_ROWS);
Note: See TracChangeset for help on using the changeset viewer.