Jia-Hao Linnoodles.hashnode.dev·May 24, 2024DB TransactionTL;DR DB transactions ensure that: The data we persist is consistent Make sure your DB transactions follow the ACID properties Each action of the application is reliable If all the constraints are valid, the system will commit to the DB; other...Discuss·403 readsGo Language
Ryan Faermanrayaz.ventures·Feb 15, 2024Passing around database transactionsI'm not a huge fan of reflection-based ORMs, which is one of the reasons that I've been using sqlc and some service types for my business logic. Sqlc is great. I define my migrations and my queries and with the POWER OF CODE GENERATION™ ... I get a b...Discuss·41 readsGo Language
Taufik Hidayattfkhdyt.hashnode.dev·Aug 19, 2023Kenapa saya berhenti menggunakan library ORM pada proyek GolangORM (Object Relational Mapping) merupakan sebuah library yang umumnya digunakan pada aplikasi back-end guna mempermudah proses query database serta schema migration. Developer hanya perlu mendefinisikan schema untuk setiap model, menjalankan migratio...Discuss·116 readsStop menggunakan ORM pada proyek Golanggolang