DryORM
Code
Result
no cache
SQLite
PostgreSQL 17.4
MariaDB 11.4.5
Select a template
dryorm features
basic
bulk create
bulk fake
csv import
basic fk
self fk
user profile
dryorm tabular output
from django.db import models from django.db.models import Count class Post(models.Model): title = models.CharField(max_length=100) tag = models.CharField(max_length=50) def run(): Post.objects.bulk_create([ Post(title='First Post', tag='django'), Post(title='Second Post', tag='django'), Post(title='Third Post', tag='python'), Post(title='Fourth Post', tag='python'), Post(title='Fifth Post', tag='orm'), ]) total_tags = Post.objects.aggregate(tag_count=Count('tag')) print(total_tags)
Output
Show Template
No output.
Queries
TCL
T
DDL
D
SELECT
S
INSERT
I
UPDATE
U
DELETE
D
Queries
Q
(
0
)
No queries.
✖ Close
Save & Share
✖
private?
Save
Save & Copy