zorm icon indicating copy to clipboard operation
zorm copied to clipboard

Common Lisp ORM for PostgreSQL

Results 15 zorm issues
Sort by recently updated
recently updated
newest added

Like Django's [F expressions](https://docs.djangoproject.com/en/2.1/ref/models/expressions/#django.db.models.F), there needs to be a construct that allows columns to be updated in the database directly.

enhancement

https://docs.djangoproject.com/en/2.2/topics/db/queries/#retrieving-objects A queryset represents aspects of a SELECT query -- the columns to fetch, filters like WHERE and LIMIT clauses, ORDER BY clause, etc. So you could, say, have a...

enhancement
experimental

Annotated values are columns returned by the query in addition to columns of the table which is primarily being queried. For example, if we have an `organizations` and an `employees`...

enhancement

- [x] CMUCL - [x] Clozure CL - [ ] CLISP - [x] ECL - [ ] Clasp

* handle unique constraint violations (attempt an update instead of insert) * provide a force-insert option (for when the primary key in the object being saved is set)

enhancement

Instead of having to provide the reverse relationship explicitly in a model, it should be created implicitly when specifying the other side relationship. Django, for example, uses the `related_name` property...

enhancement
experimental