Changeset 6651 for trunk/tools/database
- Timestamp:
- Sep 5, 2001, 3:59:03 PM (24 years ago)
- Location:
- trunk/tools/database
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/database/StateUpd.cpp
r6643 r6651 1 /* $Id: StateUpd.cpp,v 1.3 3 2001-09-05 11:57:57bird Exp $1 /* $Id: StateUpd.cpp,v 1.34 2001-09-05 13:59:03 bird Exp $ 2 2 * 3 3 * StateUpd - Scans source files for API functions and imports data on them. … … 2036 2036 /* 1. */ 2037 2037 if ( 2038 strncmp(pszFnName, "for", cchFnName) != 0 &&2038 strncmp(pszFnName, "for", cchFnName) != 0 && 2039 2039 strncmp(pszFnName, "while", cchFnName) != 0 && 2040 2040 strncmp(pszFnName, "do", cchFnName) != 0 && -
trunk/tools/database/db.cpp
r6642 r6651 1 /* $Id: db.cpp,v 1.2 3 2001-09-05 11:57:20bird Exp $ *1 /* $Id: db.cpp,v 1.24 2001-09-05 13:59:03 bird Exp $ * 2 2 * 3 3 * DB - contains all database routines. … … 1015 1015 if (pres != NULL && row != NULL && mysql_num_rows(pres) == 1) 1016 1016 { 1017 #if 0 /* keep getting duplicate keys when parameter order/names are changed. */ 1017 1018 if (atol(row[0]) == pFnDesc->cParams) 1018 1019 { /* update parameters */ … … 1039 1040 } 1040 1041 else 1042 #endif 1041 1043 { 1042 1044 if (atol(row[0]) != 0)
Note:
See TracChangeset
for help on using the changeset viewer.