Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/components/connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ async def main() -> None:
...
connection = await db_pool.connection()
# this will be an int value
query_result_value = await connection.fetch_row(
query_result_value = await connection.fetch_val(
"SELECT COUNT(*) FROM users WHERE id > $1",
[100],
)
Expand Down
Loading