https://github.com/begriffs/orm-wars
Experiments to compare ORMs
https://github.com/begriffs/orm-wars
Last synced: 5 months ago
JSON representation
Experiments to compare ORMs
- Host: GitHub
- URL: https://github.com/begriffs/orm-wars
- Owner: begriffs
- Created: 2012-08-03T14:10:54.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2022-07-21T22:43:46.000Z (over 3 years ago)
- Last Synced: 2025-01-10T17:50:14.687Z (about 1 year ago)
- Language: Python
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ORM Wars
Testing various ORMs with more complicated (realistic) situations.
I want to see which queries are possible within each library, and
what SQL it generates.
## Experiments include
Queries
* Joins
* Subqueries / EXISTS
* Window functions
* Grouping / having
* Distinct
* IN (a, b, c)
* Geospatial
* Transactions
Indexing
* Creating b-tree / hash
* Multicolumn
* Functional
* cluster on
Constraints
* Foreign keys
* on delete … no action / cascade / restrict