mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
fix unquoted db and field name
This commit is contained in:
@@ -37,7 +37,7 @@
|
||||
args().put("fieldKey", l.getSelectedValue());
|
||||
script("createTableState", args());
|
||||
|
||||
buffer.append("create table ").append(dbName).append(".").append(tableName).append(" (");
|
||||
buffer.append("create table `").append(dbName).append("`.`").append(tableName).append("` (");
|
||||
|
||||
List<String> priKeys = new ArrayList<String>();
|
||||
List<String> uniques = new ArrayList<String>();
|
||||
|
||||
Reference in New Issue
Block a user