public virtual string SerializeDropTable(SQLDropTable dropTable) { if (String.IsNullOrEmpty(dropTable.Name)) throw new Exceptions.DatabaseObjectsException("TableName has not been set."); return "DROP TABLE " + SerializeIdentifier(dropTable.Name); }
public Result DropTable(SQLDropTable sql) { return(DropTable(sql.TableName)); }