fix honeysql links

This commit is contained in:
Sean Corfield 2021-10-14 09:22:09 -07:00
parent b76b60d964
commit 07c517f912
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ as well as these more specific "read" operations:
These functions are described in more detail below. They are deliberately simple and intended to cover only the most common, basic SQL operations. The primary API (`plan`, `execute!`, `execute-one!`) is the recommended approach for everything beyond that. If you need more expressiveness, consider one of the following libraries to build SQL/parameter vectors, or run queries: These functions are described in more detail below. They are deliberately simple and intended to cover only the most common, basic SQL operations. The primary API (`plan`, `execute!`, `execute-one!`) is the recommended approach for everything beyond that. If you need more expressiveness, consider one of the following libraries to build SQL/parameter vectors, or run queries:
* [HoneySQL](https://github.com/jkk/honeysql) -- a composable DSL for creating SQL/parameter vectors from Clojure data structures * [HoneySQL](https://github.com/seancorfield/honeysql) -- a composable DSL for creating SQL/parameter vectors from Clojure data structures
* [seql](https://github.com/exoscale/seql) -- a simplified EQL-inspired query language, built on `next.jdbc` (as of release 0.1.6) * [seql](https://github.com/exoscale/seql) -- a simplified EQL-inspired query language, built on `next.jdbc` (as of release 0.1.6)
* [SQLingvo](https://github.com/r0man/sqlingvo) -- a composable DSL for creating SQL/parameter vectors * [SQLingvo](https://github.com/r0man/sqlingvo) -- a composable DSL for creating SQL/parameter vectors
* [Walkable](https://github.com/walkable-server/walkable) -- full EQL query language support for creating SQL/parameter vectors * [Walkable](https://github.com/walkable-server/walkable) -- full EQL query language support for creating SQL/parameter vectors

View file

@ -9,7 +9,7 @@
`get-by-id`, `update!`, and `delete!`). `get-by-id`, `update!`, and `delete!`).
For anything more complex, use a library like HoneySQL For anything more complex, use a library like HoneySQL
https://github.com/jkk/honeysql to generate SQL + parameters. https://github.com/seancorfield/honeysql to generate SQL + parameters.
The following options are supported: The following options are supported:
* `:table-fn` -- specify a function used to convert table names (strings) * `:table-fn` -- specify a function used to convert table names (strings)