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 class Item(models.Model): name = models.CharField(max_length=10) data = models.IntegerField() def run(): items = ( Item.objects.order_by("name") .values("data") .annotate(models.Count("id")) ) # Warning: not quite correct! (actually correct) print(items.count()) print(len(items))
Output
Show Template
No output.
Queries
TCL
TCL
DDL
DDL
SELECT
S
INSERT
I
UPDATE
U
DELETE
D
REVERSE
R
Queries
Q
(
0
)
No queries.
✖ Close
Save & Share
✖
private?
Save
Save & Copy