Esempio n. 1
0
 public override void DropTable(Common.Structure.TableInfo obj, bool testIfExists)
 {
     Put("^drop ^table");
     if (testIfExists)
     {
         Put(" ^if ^exists");
     }
     Put(" %f", obj.FullName);
     EndCommand();
 }
Esempio n. 2
0
 public override void RenameTable(Common.Structure.TableInfo obj, string newname)
 {
     PutCmd("^alter ^table %f ^rename ^to %i", obj.FullName, newname);
 }