Index: /trunk/FACT++/src/root2sql.cc
===================================================================
--- /trunk/FACT++/src/root2sql.cc	(revision 19281)
+++ /trunk/FACT++/src/root2sql.cc	(revision 19282)
@@ -666,5 +666,11 @@
                 connection.query("DROP TABLE `"+table+"`").execute();
             if (verbose>0)
-                cout << "Table `" << table << "` dropped." << endl;
+            {
+                if (!dry_run)
+                    cout << "Table `" << table << "` dropped." << endl;
+                else
+                    cout << "Dropping table `" << table << "`skipped!" << endl;
+            }
+
         }
     }
@@ -692,6 +698,10 @@
 
     if (create && verbose>0)
-        cout << "Table `" << table << "` created." << endl;
-
+    {
+        if (!dry_run)
+            cout << "Table `" << table << "` created." << endl;
+        else
+            cout << "Creating table `" << table << "`skipped!" << endl;
+    }
 
     try
