Changeset 6261 for trunk/ippTools/src/pxtables.c
- Timestamp:
- Jan 30, 2006, 6:08:56 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/pxtables.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/pxtables.c
r6256 r6261 4 4 PS_ASSERT_PTR_NON_NULL(config, false); 5 5 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 } 6 14 if (!rawScienceExpCreateTable(config->database)) { 7 15 psError(PS_ERR_UNKNOWN, false, "database access failed"); … … 9 17 } 10 18 if (!rawImfileCreateTable(config->database)) { 19 psError(PS_ERR_UNKNOWN, false, "database access failed"); 20 return false; 21 } 22 if (!p1PendingExpCreateTable(config->database)) { 11 23 psError(PS_ERR_UNKNOWN, false, "database access failed"); 12 24 return false; … … 67 79 psFree(dbPassword); 68 80 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 } 69 89 if (!rawScienceExpDropTable(config->database)) { 70 90 psError(PS_ERR_UNKNOWN, false, "database access failed"); … … 72 92 } 73 93 if (!rawImfileDropTable(config->database)) { 94 psError(PS_ERR_UNKNOWN, false, "database access failed"); 95 return false; 96 } 97 if (!p1PendingExpDropTable(config->database)) { 74 98 psError(PS_ERR_UNKNOWN, false, "database access failed"); 75 99 return false;
Note:
See TracChangeset
for help on using the changeset viewer.
