We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14144b5 commit d69c7f9Copy full SHA for d69c7f9
README.md
@@ -8,7 +8,6 @@ easier to accomplish common tasks.
8
[Flask]: https://flask.palletsprojects.com
9
[SQLAlchemy]: https://www.sqlalchemy.org
10
11
-
12
## Pallets Community Ecosystem
13
14
> [!IMPORTANT]\
@@ -19,7 +18,6 @@ easier to accomplish common tasks.
19
18
>
20
> [discord]: https://discord.gg/pallets
21
22
23
## A Simple Example
24
25
```python
@@ -45,5 +43,5 @@ with app.app_context():
45
43
db.session.add(User(username="example"))
46
44
db.session.commit()
47
48
- users = db.session.execute(db.select(User)).scalars()
+ users = db.session.scalars(db.select(User))
49
```
0 commit comments