Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 7951)
+++ trunk/MagicSoft/Mars/Changelog	(revision 7952)
@@ -18,4 +18,11 @@
 
                                                  -*-*- END OF LINE -*-*-
+ 2006/08/28 Thomas Bretz
+
+   * msql/MSQLMagic.cc:
+     - replaced DELETE by DELETE FROM
+
+
+
  2006/08/25 Daniela Hoehne
 
Index: trunk/MagicSoft/Mars/msql/MSQLMagic.cc
===================================================================
--- trunk/MagicSoft/Mars/msql/MSQLMagic.cc	(revision 7951)
+++ trunk/MagicSoft/Mars/msql/MSQLMagic.cc	(revision 7952)
@@ -216,5 +216,5 @@
 // An abbreviation for a Dalete-Query.
 //
-// It builds "DELETE table WHERE where"
+// It builds "DELETE FROM table WHERE where"
 // The whitespaces are already conatined.
 //
@@ -225,5 +225,5 @@
 {
     // Build query
-    TString query("DELETE ");
+    TString query("DELETE FROM ");
     query += table;
     query += " WHERE ";
