Changeset 6159 for branches/eam_rel9_b1/psLib/src/db/psDB.c
- Timestamp:
- Jan 21, 2006, 9:05:43 PM (20 years ago)
- File:
-
- 1 edited
-
branches/eam_rel9_b1/psLib/src/db/psDB.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_rel9_b1/psLib/src/db/psDB.c
r5825 r6159 12 12 * @author Joshua Hoblitt 13 13 * 14 * @version $Revision: 1.44.16. 1$ $Name: not supported by cvs2svn $15 * @date $Date: 200 5-12-23 01:59:10$14 * @version $Revision: 1.44.16.2 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2006-01-22 07:05:43 $ 16 16 * 17 17 * Copyright 2005 Joshua Hoblitt, University of Hawaii … … 1258 1258 } else if (item->type == PS_DATA_STRING) { 1259 1259 // + column name + _ + like + _ + ' + value + ' 1260 if (*(char *)item->data.V == '\0') { 1260 // check for NULL and empty ("") strings 1261 if (item->data.V == NULL || *(char *)item->data.V == '\0') { 1261 1262 psStringAppend(&query, "%s IS NULL", item->name); 1262 1263 } else {
Note:
See TracChangeset
for help on using the changeset viewer.
