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 e8a9f70 commit e7e0527Copy full SHA for e7e0527
README.md
@@ -123,3 +123,17 @@ with pytest.raises(ValueError):
123
with pytest.raises(ValueError):
124
UpdateUser(name="John Doe")
125
```
126
+
127
+### Target audience
128
129
+Production. For folks who prefer query maker over ORM.
130
131
+### Comparison with other projects:
132
133
+**Piccolo**: Tight integration with drivers. Very opinionated. Not as flexible or mature as sqlalchemy core.
134
135
+**Pypika**: Doesn’t prevent sql injection by default. Hence can be considered insecure.
136
137
+**Raw string queries with placeholders**: sacrifices code readability, and prone to sql injection if one forgets to use placeholders.
138
139
+**Other ORMs**: They are full blown ORMs, not query makers.
0 commit comments