From b412a698f66bf830f6545369670798ffca6b49d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ragnar=20Dahl=C3=A9n?= Date: Mon, 26 Oct 2015 16:57:08 +0000 Subject: [PATCH] Fix incorrect example in execute! docstring --- src/squee/jdbc.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/squee/jdbc.clj b/src/squee/jdbc.clj index e7e04cb..bc822b2 100644 --- a/src/squee/jdbc.clj +++ b/src/squee/jdbc.clj @@ -154,9 +154,9 @@ params is a function that parameterizes the query, like #'params Examples: - (query conn \"select * from bar\") + (execute! conn \"select * from bar\") - (query conn \"select * from foo where x = ? and y = ? \" (params 4 5)) + (execute! conn \"select * from foo where x = ? and y = ? \" (params 4 5)) Supports all opts that #'query supports Additionally `:return-keys? true` will return database-generated keys."