From e1ea0a9f9e593e631aea9967797d74f2387aedec Mon Sep 17 00:00:00 2001 From: Nicholas Chammas Date: Wed, 16 Jul 2025 15:32:06 -0400 Subject: [PATCH] Correct link to docs on parametrization --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4c442ad..0b4ad96 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,9 @@ When calling `Base.metadata.create_all()`, the executed DDL will include `GENERA ## Parameters -`databricks-sql-connector` supports two approaches to parameterizing SQL queries: native and inline. Our SQLAlchemy 2.0 dialect always uses the native approach and is therefore limited to DBR 14.2 and above. If you are writing parameterized queries to be executed by SQLAlchemy, you must use the "named" paramstyle (`:param`). Read more about parameterization in `docs/parameters.md`. +`databricks-sql-connector` supports two approaches to parameterizing SQL queries: native and inline. Our SQLAlchemy 2.0 dialect always uses the native approach and is therefore limited to DBR 14.2 and above. If you are writing parameterized queries to be executed by SQLAlchemy, you must use the "named" paramstyle (`:param`). Read more about [parameterization here][params]. + +[params]: https://github.com/databricks/databricks-sql-python/blob/main/docs/parameters.md ## Usage with pandas