Use double quotes for table name when fetching table contents, fixes #16
This commit is contained in:
parent
8cba657773
commit
7f9344a572
@ -148,7 +148,7 @@ function showTableContent() {
|
||||
return;
|
||||
}
|
||||
|
||||
var query = "SELECT * FROM " + name + " LIMIT 100;";
|
||||
var query = "SELECT * FROM \"" + name + "\" LIMIT 100;";
|
||||
|
||||
executeQuery(query, function(data) {
|
||||
buildTable(data);
|
||||
|
Loading…
x
Reference in New Issue
Block a user