sqlingvo icon indicating copy to clipboard operation
sqlingvo copied to clipboard

A Clojure & ClojureScript DSL for SQL

Results 14 sqlingvo issues
Sort by recently updated
recently updated
newest added

Isn't it wrong to quote oracle tables and identifiers ? I get error when calling oracle. (query my-oracle (sql (oracle) (select [:sysdate] (from :dual)))) generates following: [SELECT "sysdate" FROM "dual"]...

MySQL supports a LIMIT statement with an optional offset argument, i.e. `LIMIT 10, 20` which stands for "fetch 20 records after skipping the first 10". Noticed this while working on...

Hello, I had a problem when trying `sqlingvo` on SQLite via `sqlite-jdbc` 3.7.2. I tried to insert multiple values with `(insert :table [] (values [{...}]))` but got error `[SQLITE_ERROR] SQL...