Changeset 8046 for trunk/MagicSoft/Mars/datacenter/macros
- Timestamp:
- 10/10/06 17:34:30 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/macros/writesequencefile.C
r8045 r8046 102 102 103 103 TSQLRow *row = res->Next(); 104 return row ? (*row)[0] : ""; 104 if (!row) 105 { 106 cout << "ERROR - No name in " << col << " for key " << n << endl; 107 return ""; 108 } 109 110 return (*row)[0]; 105 111 } 106 112
Note:
See TracChangeset
for help on using the changeset viewer.