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 Report(models.Model): config = models.JSONField() def __str__(self): return self.config['name'] or '(Untitled Report)' def run(): instance = Report.objects.create(config={'name': None}) qs1 = Report.objects.filter(config__name__exact=None) qs2 = Report.objects.filter(config__name__iexact=None) print(qs1) print(qs2)
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