我正在使用 JDBC 从文件制作服务器 v12 中获取数据。
由于某些未知原因,filemaker 允许您在表名中包含空格。我无法选择这些表,因为我刚刚收到语法错误。
我用java编写了一个应用程序来获取数据。有谁知道我如何从带有空格的表中选择数据?
编辑(来自OP的评论):
这是Java部分:
String selectSQL = "SELECT "+this.getImportableColumnsString()+" FROM "+this.getTableName();
PreparedStatement preparedStatement = this.connection.prepareStatement(selectSQL);
ResultSet rs = preparedStatement.executeQuery();