clojure jdbc:如何插入具有特定架构的表?

时间:2015-03-29 14:35:11

标签: jdbc clojure

在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中?

1 个答案:

答案 0 :(得分:5)

只需将表格名称指定为:template.mytable,或指定为字符串"template.mytable"