Re: clojure.java.jdbc create-table

2012-10-08 Thread Stephen Compall
On Oct 5, 2012 11:15 AM, "Matt" wrote: > When I use the form create-table passed-argument [fields] as opposed to a constant as in create-table :hard-coded-entity-name [fields], create-table is an ordinary function without an inliner: https://github.com/clojure/java.jdbc/tree/java.jdbc-0.2.3#L522

clojure.java.jdbc create-table

2012-10-05 Thread Matt
Hi, I'm relatively new to Clojure. This must be easy. I am trying to write a function that creates a table with a name passed as argument, and this naturally requires passing * clojure.java.jdbc/create-table *a value for the table name, rather than specifying the name as a constant. Howeve