我可以使用SQLX打开与Athena的数据库连接吗

Can I open a database connection to Amazon Athena using SQLX? I've tried using the following:

sqlx.Open("jdbc", "awsathena+jdbc://<user>:<pass>@<host>:444/<schema>?s3_staging_dir=<staging>")

But I'm getting:

Cannot make db connection: sql: unknown driver "awsathena+jdbc" (forgotten import?)

A few follow up questions:

  • Can I direct my request to a specific bucket? Doesn't look like the JDBC properties documentation supports that.
  • Can the schema I provide be from AWS Glue?