You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+35-1Lines changed: 35 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,14 +119,48 @@ As connection can be closed in different situations on various sides you can sel
119
119
`DEALLOCATE ALL` and `DISCARD PLAN`, so that the statement cache is not
120
120
rendered ineffective.
121
121
122
+
## Results from querying
123
+
You have some options to get results from the query.
124
+
`execute()` method, for example, returns `QueryResult` and this class can be converted into `list` of `dict`s - `list[dict[Any, Any]]` or into any Python class (`pydantic` model, as an example).
0 commit comments