DryORM
Code
Result
no cache
Django 6.0
Django 5.2.8
Django 4.2.26 LTS
SQLAlchemy 2.0
Prisma 6.3
SQLite
PostgreSQL 17.4
PostGIS 3.5 (PostgreSQL 16)
MariaDB 11.4.5
Select a template
django
sqlalchemy
prisma
from django.db import models # Tabulate and Faker are available. from tabulate import tabulate from faker import Faker # You can place the models here class AbsenceRequest(models.Model): frozen_settings = models.JSONField() # You need a run function def run(): # At this point all migrations are created and applied ar = AbsenceRequest.objects.create(frozen_settings={'pe_code': 'boh'}) print(AbsenceRequest.objects.values("frozen_settings__pe_code").first()) print(AbsenceRequest.objects.first().frozen_settings['pe_code']) return list(AbsenceRequest.objects.all().values())
Output
Show Template
No output.
Queries
INSERT
I
UPDATE
U
SELECT
S
DELETE
D
DDL
D
TCL
T
Queries
Q
(
0
)
No queries.
✖ Close
Save & Share
✖
private?
Save
Save & Copy