在jdbc clojure http://clojure-doc.org/articles/ecosystem/java_jdbc/home.html
的网址中它提供了以下示例以插入表
(jdbc/insert! db-spec :table {:col1 42 :col2 "123"}) ;; Create
但对于像postgresql这样的数据库,它可能有一个非公共模式,假设我创建了一个类似模板的模式,然后如何插入到template.mytable中?
答案 0 :(得分:5)
只需将表格名称指定为:template.mytable
,或指定为字符串"template.mytable"
。