-
Putting this here mostly to gauge interest and decide if we wind up writing one, whether it belongs in a PR into the library or as its own seperate library relying on ayesql and avalanche, or what? O…
-
In this [yesql issue](https://github.com/krisajenkins/yesql/issues/8), you mention that squirrel easily plugs into yesql, but I can't figure out an easy way to do it. All I'm coming up with is somethi…
-
I have a complex installation function that is composed of a `CREATE TABLE` and two `CREATE INDEX` statements:
```sql
-- name: create-table-chapter-permission @execute
-- Creates the chapter perm…
-
Please consider adding support for yesql ( https://github.com/krisajenkins/yesql ). The query functions are generated by a macro. The query parameters are passed directly (positionally?) so the docstr…
-
I hereby request a feature where, given CL-YESQL code,
```sql
-- name: users-by-country @rows
-- Counts the users in a given country.
SELECT count(*) AS count
FROM user
WHERE country_code = :c…
-
yesql doesn't support multiple insert, which is a must for this app.
although we can [fallback to jdbc](https://github.com/krisajenkins/yesql/issues/51#issuecomment-90328761) but native support will…
-
The whole sql function thing seems somewhat orthogonal to the DBMS. Rather than (or in perhaps in addition to) adding support for specific DBMSes in cl-yesql, how about leveraging cl-dbd?
-
From the README and examples it seems (unlike clojure's yesql or even eql) only one query per file is supported. Was this a deliberate choice? or just not implemented as yet?
At the moment this is…
-
```
-- name: select-player-by-id @row
-- Returns a player whose ID matches the argument.
SELECT id, login, email, name, pass_hash, pass_salt,
activatedp, creation_time, last_edit_time FROM …
-
It would be really helpful for me, especially as a novice clojure user, to have a description of the differences between `sqlingvo` and the others sql libraries along with the motivation for creating …