Ignore:
Timestamp:
08/28/06 14:19:35 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/msql/MSQLMagic.cc

    r7940 r7952  
    216216// An abbreviation for a Dalete-Query.
    217217//
    218 // It builds "DELETE table WHERE where"
     218// It builds "DELETE FROM table WHERE where"
    219219// The whitespaces are already conatined.
    220220//
     
    225225{
    226226    // Build query
    227     TString query("DELETE ");
     227    TString query("DELETE FROM ");
    228228    query += table;
    229229    query += " WHERE ";
Note: See TracChangeset for help on using the changeset viewer.