ORM 帮我们节省了很多工作,基本上不用写 SQL,就可以完成很多 CRUD 操作,而且外键的关联也会自动被 […]
Continue reading…
Posts tagged with 'SQL'
Use the Index, Luke! 笔记2 性能、Join操作
这是读 use-the-index-luke 的第二篇笔记,是 Testing and Scalability […]
Continue reading…
Use the Index, Luke! 笔记1
这篇文章是我读 https://use-the-index-luke.com/ 第一章的笔记。这对开发者来说是 […]
Continue reading…
认识Hibernate
最近工作的项目中,用的 ORM 技术是 Hibernate,学习了一下它的用法,正好 PyCon 上我有一个演 […]
Continue reading…
Django migration 原理
Django 自带了一套 ORM,就是将数据库的表映射成 Python 的 Class,这样我们在写程序的时候 […]
Continue reading…