Changeset 7952 for trunk/MagicSoft/Mars
- Timestamp:
- 08/28/06 14:19:35 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7944 r7952 18 18 19 19 -*-*- END OF LINE -*-*- 20 2006/08/28 Thomas Bretz 21 22 * msql/MSQLMagic.cc: 23 - replaced DELETE by DELETE FROM 24 25 26 20 27 2006/08/25 Daniela Hoehne 21 28 -
trunk/MagicSoft/Mars/msql/MSQLMagic.cc
r7940 r7952 216 216 // An abbreviation for a Dalete-Query. 217 217 // 218 // It builds "DELETE table WHERE where"218 // It builds "DELETE FROM table WHERE where" 219 219 // The whitespaces are already conatined. 220 220 // … … 225 225 { 226 226 // Build query 227 TString query("DELETE ");227 TString query("DELETE FROM "); 228 228 query += table; 229 229 query += " WHERE ";
Note:
See TracChangeset
for help on using the changeset viewer.