Tag: #orm
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 4 posts
SQL Injection and Parameter Binding — The Places That Still Break When You Use an ORM
The first thing people search for as a defense against SQL injection is an escaping function, but the right answer is parameter binding. Escaping is an attempt to make a value safe inside a string literal, while binding
2026-07-26 · 16 min read #security#sql#database#orm#pythonTypeScript ORMs and Query Builders 2026 — Drizzle vs Kysely vs Prisma vs postgres.js Deep Dive (How Close to SQL?) (english)
In 2026, TypeScript database access is no longer a 'Prisma or raw SQL' binary. Drizzle has claimed the headless-ORM seat with the closest-to-SQL ergonomics, Kysely has won over raw-SQL teams as a schemaless type-safe que
2026-05-14 · 20 min read #typescript#orm#drizzle#kysely#prismaFlyway & Database Migration Complete Guide 2025: Schema Versioning, ORM Integration, Zero-Downtime Deployment
Everything about DB migration! Flyway (version-based), Liquibase (changeset-based), ORM migrations (Prisma/TypeORM/Alembic/Django), zero-downtime schema changes, rollback strategies, CI/CD integration, K8s migration best
2026-03-25 · 26 min read #flyway#database-migration#schema-management#orm#liquibaseN+1 Problem Deep Dive — The Silent Performance Killer in ORMs
What the N+1 problem is, why it is dangerous, how to find it, and how to fix it. A complete guide with practical code covering solutions across all ORMs including Django, SQLAlchemy, JPA/Hibernate, Prisma, and ActiveReco
2026-03-02 · 10 min read #database#n-plus-1#orm#django#sqlalchemy