Index: /trunk/Mars/msql/MSQLServer.cc
===================================================================
--- /trunk/Mars/msql/MSQLServer.cc	(revision 15443)
+++ /trunk/Mars/msql/MSQLServer.cc	(revision 15444)
@@ -32,5 +32,5 @@
 //
 //  Use it like TSQlServer:
-//    new MSQLServer("mysql://localhost:3306", "hercules", "stdmagicpassword");
+//    new MSQLServer("mysql://localhost:3306?compress", "hercules", "stdmagicpassword");
 //    // now start your TBrowser
 //    new TBrowser;
@@ -350,4 +350,11 @@
 void MSQLServer::Print(Option_t *o) const /*FOLD00*/
 {
+    const TString opt(o);
+    if (!opt.IsNull())
+    {
+        PrintQuery(o);
+        return;
+    }
+
     switch (fType)
     {
@@ -378,9 +385,9 @@
     {
     case kIsTable:
-        PrintQuery(Form("SHOW FULl COLUMNS FROM %s.%s", (const char*)fDataBase, (const char*)fTable));
+        PrintQuery(Form("SHOW FULL COLUMNS FROM %s.%s", (const char*)fDataBase, (const char*)fTable));
         break;
 
     case kIsColumn:
-        PrintQuery(Form("SHOW FULl COLUMNS FROM %s.%s LIKE %s", (const char*)fDataBase, (const char*)fTable, (const char*)fColumn));
+        PrintQuery(Form("SHOW FULL COLUMNS FROM %s.%s LIKE %s", (const char*)fDataBase, (const char*)fTable, (const char*)fColumn));
         break;
 
