IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 25, 2008, 1:14:07 PM (18 years ago)
Author:
jhoblitt
Message:

add warpMask table

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippdb/tests/insertobject.c

    r17142 r17144  
    425425    {
    426426        psDB            *dbh;
     427        warpMaskRow     *object;
     428
     429        dbh = psDBInit("localhost", "test", NULL, "test");
     430        if (!dbh) {
     431            exit(EXIT_FAILURE);
     432        }
     433
     434        object = warpMaskRowAlloc("a string");
     435        if (!object) {
     436            exit(EXIT_FAILURE);
     437        }
     438
     439        if (!warpMaskInsertObject(dbh, object)) {
     440            exit(EXIT_FAILURE);
     441        }
     442
     443        psFree(object);
     444        psDBCleanup(dbh);
     445    }
     446
     447    {
     448        psDB            *dbh;
    427449        diffRunRow      *object;
    428450
Note: See TracChangeset for help on using the changeset viewer.