fix unquoted db and field name

This commit is contained in:
servertood
2008-11-23 10:40:19 +00:00
parent b4136eb94f
commit a3ba4ea7e9

View File

@@ -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>();