Tag: case

  • Automatically converting case between SQL and Clojure

    Automatically converting case between SQL and Clojure

    SQL, at least PostgreSQL, likes using snake case for table names, such as user_name, while in Clojure, kebab case is preferred, such as user-name. When you use the library Yesql you are likely to end up with keywords in snake case unless you do some conversion. In our toy project, Ninja Tools, I wanted to perform these…