mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
12 lines
268 B
Plaintext
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") + "`");
|
|
|
|
|
|
|