如果没有任何转换,如何从next.jdbc/plan
的结果中实现行?
直接使用(Identity)不适用
(require '[next.jdbc :as jdbc])
(def sql-params
["SELECT column1
FROM (VALUES (1, 1, 1),
(2, 2, 2),
(3, 3, 3)) AS _"])
(into []
(map identity)
(jdbc/plan db-spec
sql-params))
;=> [{row} from `plan` -- missing `map` or `reduce`?
; {row} from `plan` -- missing `map` or `reduce`?
; {row} from `plan` -- missing `map` or `reduce`?]
如果行以映射(默认)表示,则是可行的
(into []
(map #(into {} %))
(jdbc/plan db-spec
sql-params))
;=> [{:column1 1} {:column1 2} {:column1 3}]
如果行以向量(builder-fn
)表示,则可以使用vec
(require '[next.jdbc.result-set :as rs])
(into []
(map vec)
(jdbc/plan db-spec
sql-params
{:builder-fn rs/as-arrays}))
;=> [[1] [2] [3]]
是否有任何可以被应用于映射和向量实现的xform?
或者我应该使用plan
之外的东西来读取懒的结果集?