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: docs/components/transaction.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -407,8 +407,6 @@ async def main() -> None:
407
407
-`querystring`: Statement string.
408
408
-`parameters`: List of list of parameters for the statement string.
409
409
-`fetch_number`: rewrite default fetch_number. Default is 10.
410
-
-`scroll`: make cursor scrollable or not. Default is like in `PostgreSQL`.
411
-
-`prepared`: prepare querystring or not.
412
410
413
411
From `Transaction` you can create new `Cursor` object which represents cursor in the `PostgreSQL`. [PostgreSQL Docs](https://www.postgresql.org/docs/current/plpgsql-cursors.html)
Copy file name to clipboardExpand all lines: docs/introduction/introduction.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,15 +5,14 @@ title: What is PSQLPy?
5
5
`PSQLPy` is a new Python driver for PostgreSQL fully written in Rust. It was inspired by `Psycopg3` and `AsyncPG`.
6
6
7
7
With `PSQLPy` you can:
8
-
- Make an interaction with the PostgeSQL in your application much faster (2-3 times).
8
+
- Make an interaction with the PostgeSQL in your application faster.
9
9
- Be sure that there won't be any unexpected errors.
10
-
- Don't usually go to the documentation to search every question - we have awesome docstrings for every component.
10
+
- Don't usually go to the documentation to search every question - we have docstrings for every component.
11
11
- Use `MyPy` (or any other Python type checker) with confidence that exactly the types specified in the typing will be returned.
12
12
- Concentrate on writing your code, not understanding new abstractions in this library, we only have classes which represents PostgreSQL object (transaction, cursor, etc).
13
13
14
14
::: info
15
-
It is extremely important to understand that the library will provide a noticeable acceleration in working with the database only if your queries are optimized.
16
-
Otherwise, there will be acceleration, but not so significant
15
+
The library will provide a noticeable acceleration in working with the database only if your queries are optimized.
17
16
:::
18
17
19
18
## Important notes
@@ -22,4 +21,5 @@ But in some situations this behavior can break you application. As an example, i
22
21
23
22
## Join community!
24
23
You can get support from the creators of `PSQLPy` in some social media:
0 commit comments