Guest User

Untitled

a guest
Jun 18th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. (with-connection db
  2. (with-query-results rs ["select * from blogs"]
  3. ; rs will be a sequence of maps,
  4. ; one for each record in the result set.
  5. (dorun (map #(println (:title %)) rs))))
Add Comment
Please, Sign In to add comment