Skip to content

Commit

Permalink
docs: Update sqlalchemy core tutorial link (#517)
Browse files Browse the repository at this point in the history
The current link in the docs (specifying the version "latest") now points to the docs for the SQLAlchemy 2.0 beta. This PR changes the link to strictly specify version 1.4.

It would also be possible to change the link to point to "stable" rather than "latest", however 1.4 seemed more appropriate as "stable" will likely point to 2.0 before this library migrates.

Cheers
  • Loading branch information
njanke96 committed Dec 1, 2022
1 parent b78e519 commit 8ec9168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/database_queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ result = await database.fetch_one(query=query, values={"id": 1})
Note that query arguments should follow the `:query_arg` style.

[sqlalchemy-core]: https://docs.sqlalchemy.org/en/latest/core/
[sqlalchemy-core-tutorial]: https://docs.sqlalchemy.org/en/latest/core/tutorial.html
[sqlalchemy-core-tutorial]: https://docs.sqlalchemy.org/en/14/core/tutorial.html

## Query result

Expand Down

0 comments on commit 8ec9168

Please sign in to comment.