Changeset 8046 for trunk/MagicSoft/Mars
- Timestamp:
- 10/10/06 17:34:30 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8045 r8046 22 22 * datacenter/macros/writesequencefile.C: 23 23 - fixed a possible crash in GetName 24 - improved output in case of failure 24 25 25 26 -
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.