Index: trunk/FACT++/src/root2sql.cc
===================================================================
--- trunk/FACT++/src/root2sql.cc	(revision 19186)
+++ trunk/FACT++/src/root2sql.cc	(revision 19187)
@@ -710,11 +710,23 @@
     try
     {
-        if (run_delete && !fixed.empty() && !drop && !dry_run)
-        {
-            const mysqlpp::SimpleResult res =
-                connection.query("DELETE FROM `"+table+"` WHERE 1"+where).execute();
-
+        if (run_delete)
+        {
             if (verbose>0)
-                cout << res.rows() << " row(s) deleted.\n" << endl;
+                cout << "Deleting rows...";
+
+            if (!fixed.empty() && !drop && !dry_run)
+            {
+                if (verbose>0)
+                    cout << endl;
+
+                const mysqlpp::SimpleResult res =
+                    connection.query("DELETE FROM `"+table+"` WHERE 1"+where).execute();
+
+                if (verbose>0)
+                    cout << res.rows() << " row(s) deleted.\n" << endl;
+            }
+            else
+                if (verbose>0)
+                    cout << " skipped." << endl;
         }
     }
