mito icon indicating copy to clipboard operation
mito copied to clipboard

An ORM for Common Lisp with migrations, relationships and PostgreSQL support

Results 37 mito issues
Sort by recently updated
recently updated
newest added

In the docs for eager-loading [https://github.com/fukamachi/mito#eager-loading](url) I noticed that the queries are: ```LISP ;-> ;; SELECT * FROM `tweet` WHERE (`status` LIKE ?) ("%Japan%") [3 row] | MITO.DB:RETRIEVE-BY-SQL ;-> ;;...

I would like to be able to do multiple joins with mito. Right now, includes only allows for one join, but for a regular m-n relationship, where we have tables...

Hi, something like this `(mito:find-dao 'thing :text text :whatever :null)` produces SQL like `;; SELECT * FROM `thing` WHERE ((`text` = ?) AND (`whatever` = NULL)) LIMIT 1 ("Etc")` which...

Here is my view definition: ```lisp (defclass top-item () ((subject-type :initarg :subject-type :col-type :text :reader subject-type) (subject-id :initarg :subject-id :col-type :integer :reader subject-id) (rating :initarg :rating :col-type :integer :reader rating))...

See https://github.com/fukamachi/mito/pull/147 To keep with the style of other places where qualifiers are provided, like in: ```lisp (name :col-type (:varchar 64)) ``` It makes sense to allow parsing of multiple...

When compiling a class, whether it be on the REPL or even when `asdf` is loading the system and tries to compile a file that has a class with a...