如何在 Presto 中为 SQL 服务器目录指定数据库?

How to specify database for SQL Server catalog in Presto?

我为 SQL 服务器指定了以下目录

connector.name=sqlserver
connection-url=jdbc:sqlserver://192.168.1.1
connection-user=build_agent
connection-password=build_agent

当我尝试对它进行 运行 查询时,似乎我只能访问 master 数据库。如何指定特定的数据库?

来自 Trino(以前的 Presto SQL)SQL 服务器连接器文档(https://trino.io/docs/current/connector/sqlserver.html):

connection-url=jdbc:sqlserver://<host>:<port>;database=<database>