mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
13 lines
222 B
Plaintext
13 lines
222 B
Plaintext
|
|
WindowContext context = argObj("windowContext");
|
|
String table = arg("tableToDrop");
|
|
|
|
DB db = context.get("db");
|
|
|
|
db.begin();
|
|
db.execute("use " + context.get("currentDB"));
|
|
db.execute("drop table " + table);
|
|
db.end();
|
|
|
|
|