IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 8, 2007, 11:52:32 AM (19 years ago)
Author:
jhoblitt
Message:

add PS_DATA_U32 support to psDBGenerateConditionalSQL()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/db/psDB.c

    r10951 r10964  
    1212 *  @author Joshua Hoblitt
    1313 *
    14  *  @version $Revision: 1.124 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2007-01-06 04:38:29 $
     14 *  @version $Revision: 1.125 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2007-01-08 21:52:32 $
    1616 *
    1717 *  Copyright (C) 2005-2006  Joshua Hoblitt, University of Hawaii
     
    19371937        psStringAppend(&query, "%s %s %d", itemName, opStr, (int)(item->data.S32));
    19381938        break;
     1939    case PS_DATA_U32:
     1940        psStringAppend(&query, "%s %s %u", itemName, opStr, (unsigned int)(item->data.U32));
     1941        break;
    19391942    case PS_DATA_F32:
    19401943        // need to handle floating-point round-off issues (use a padding of 10*FLT_EPSILON)
Note: See TracChangeset for help on using the changeset viewer.