skip to Main Content

Postgresql – Clojure insert data to db

i started learning clojure, and i have one problem. I just have 2 files, project.clj (defproject test-clojure-project "0.1.0-SNAPSHOT" :description "A simple Clojure web project" :dependencies [[org.clojure/clojure "1.10.0"] [ring "1.10.0"] [ring/ring-jetty-adapter "1.10.0"] [ring/ring-json "0.5.0"] [cheshire "5.10.0"] [org.postgresql/postgresql "42.3.1"] [org.clojure/java.jdbc "0.7.11"] ;;…

VIEW QUESTION

Translating vector into map

I've got this list of fields (that's Facebook's graph API fields list). ["a" "b" ["c" ["t"] "d"] "e" ["f"] "g"] I want to generate a map out of it. The convention is following, if after a key vector follows, then…

VIEW QUESTION
Back To Top
Search