From 07c517f912e0aacdd31d167b75261b4665e3d033 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Thu, 14 Oct 2021 09:22:09 -0700 Subject: [PATCH] fix honeysql links --- doc/friendly-sql-functions.md | 2 +- src/next/jdbc/sql.clj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/friendly-sql-functions.md b/doc/friendly-sql-functions.md index 65a6ef7..d0bc223 100644 --- a/doc/friendly-sql-functions.md +++ b/doc/friendly-sql-functions.md @@ -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: -* [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) * [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 diff --git a/src/next/jdbc/sql.clj b/src/next/jdbc/sql.clj index b0e8bb7..4867b26 100644 --- a/src/next/jdbc/sql.clj +++ b/src/next/jdbc/sql.clj @@ -9,7 +9,7 @@ `get-by-id`, `update!`, and `delete!`). 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: * `:table-fn` -- specify a function used to convert table names (strings)