Files
HeidiSQL/extra/jheidi/dropTable$mysql.ajl

12 lines
268 B
Plaintext

WindowContext context = argObj("windowContext");
String table = arg("tableToDrop");
DB db = context.get("db");
db.execute("drop table `" + context.get("currentDB") + "`.`" + table + "`");
db.flushStatement("show tables from `" + context.get("currentDB") + "`");